diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-27 22:45:14 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-27 22:45:14 +0000 |
commit | 8e0ad5a006bf0402f37c7d884bb48c39689c6246 (patch) | |
tree | 13317709e8669536d23a95bdd63271a887ce69cb /tests/writer.markdown | |
parent | 141affdb5140478464bf3c7331f6be4cf9454dd6 (diff) | |
download | pandoc-8e0ad5a006bf0402f37c7d884bb48c39689c6246.tar.gz |
Cleaned up handling of embedded quotes in link titles.
Now these are stored as a '"' character, not as '"'.
The function escapeLinkTitle in the Markdown writer is
unnecessary and was removed. Tests modified accordingly.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@517 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests/writer.markdown')
-rw-r--r-- | tests/writer.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/writer.markdown b/tests/writer.markdown index dbbed7adb..bae2008dd 100644 --- a/tests/writer.markdown +++ b/tests/writer.markdown @@ -510,7 +510,7 @@ Just a [URL](/url/). [URL and title](/url/ "title preceded by a tab"). -[URL and title](/url/ "title with "quotes" in it") +[URL and title](/url/ "title with "quotes" in it") [URL and title](/url/ "title with single quotes") @@ -554,10 +554,10 @@ This should [not][] be a link. Foo [bar][]. -Foo [biz](/url/ "Title with "quote" inside"). +Foo [biz](/url/ "Title with "quote" inside"). - [bar]: /url/ "Title with "quotes" inside" + [bar]: /url/ "Title with "quotes" inside" ## With ampersands |