diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-08-09 21:31:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-09 21:31:52 +0200 |
commit | 3a6e15a3131f2ced7daf912ed9df16e6a0860a37 (patch) | |
tree | 7131a90fed0ef22f9201954c25f5b1b1168d7314 /tests | |
parent | 0fbb676c81ea258cfbfa8f1a726b37edf2bd2b90 (diff) | |
parent | ba5b426ded8b01a290da27aac9d3bb9a7a26de8c (diff) | |
download | pandoc-3a6e15a3131f2ced7daf912ed9df16e6a0860a37.tar.gz |
Merge pull request #3067 from tarleb/org-figure-bugfix
Org reader: ensure image sources are proper links
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Tests/Readers/Org.hs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/Tests/Readers/Org.hs b/tests/Tests/Readers/Org.hs index 1f8a8a01e..75d70a8bc 100644 --- a/tests/Tests/Readers/Org.hs +++ b/tests/Tests/Readers/Org.hs @@ -219,12 +219,12 @@ tests = (para $ link "" "" "New Link") , "Image link" =: - "[[sunset.png][dusk.svg]]" =?> + "[[sunset.png][file:dusk.svg]]" =?> (para $ link "sunset.png" "" (image "dusk.svg" "" "")) , "Image link with non-image target" =: - "[[http://example.com][logo.png]]" =?> - (para $ link "http://example.com" "" (image "logo.png" "" "")) + "[[http://example.com][./logo.png]]" =?> + (para $ link "http://example.com" "" (image "./logo.png" "" "")) , "Plain link" =: "Posts on http://zeitlens.com/ can be funny at times." =?> @@ -810,29 +810,29 @@ tests = [ "Figure" =: unlines [ "#+caption: A very courageous man." , "#+name: goodguy" - , "[[edward.jpg]]" + , "[[file:edward.jpg]]" ] =?> para (image "edward.jpg" "fig:goodguy" "A very courageous man.") , "Figure with no name" =: unlines [ "#+caption: I've been through the desert on this" - , "[[horse.png]]" + , "[[file:horse.png]]" ] =?> para (image "horse.png" "fig:" "I've been through the desert on this") , "Figure with `fig:` prefix in name" =: unlines [ "#+caption: Used as a metapher in evolutionary biology." , "#+name: fig:redqueen" - , "[[the-red-queen.jpg]]" + , "[[./the-red-queen.jpg]]" ] =?> - para (image "the-red-queen.jpg" "fig:redqueen" + para (image "./the-red-queen.jpg" "fig:redqueen" "Used as a metapher in evolutionary biology.") , "Figure with HTML attributes" =: unlines [ "#+CAPTION: mah brain just explodid" , "#+NAME: lambdacat" , "#+ATTR_HTML: :style color: blue :role button" - , "[[lambdacat.jpg]]" + , "[[file:lambdacat.jpg]]" ] =?> let kv = [("style", "color: blue"), ("role", "button")] name = "fig:lambdacat" @@ -842,7 +842,7 @@ tests = , "Labelled figure" =: unlines [ "#+CAPTION: My figure" , "#+LABEL: fig:myfig" - , "[[blub.png]]" + , "[[file:blub.png]]" ] =?> let attr = ("fig:myfig", mempty, mempty) in para (imageWith attr "blub.png" "fig:" "My figure") |