diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-24 08:14:43 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-24 08:14:43 +0000 |
commit | 96919a6ac5c21a8b46fbc347a4d815f0c9c89b98 (patch) | |
tree | f9cf3dcd49e2d769a26738b7e5b5dcb5a7eeef97 /tests | |
parent | e6cc2aa3cf30cc5179b33974a894f5333167242b (diff) | |
download | pandoc-96919a6ac5c21a8b46fbc347a4d815f0c9c89b98.tar.gz |
More smart quote bug fixes:
+ LaTeX writer now handles consecutive quotes properly:
for example, ``\,`hello'\,''
+ LaTeX reader now parses '\,' as empty Str
+ normalizeSpaces function in Shared now removes empty Str elements
+ Modified tests accordingly
git-svn-id: https://pandoc.googlecode.com/svn/trunk@506 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests')
-rw-r--r-- | tests/writer.latex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/writer.latex b/tests/writer.latex index f3ffeed62..e7b4d08e4 100644 --- a/tests/writer.latex +++ b/tests/writer.latex @@ -377,13 +377,13 @@ This is code: \verb!>!, \verb!$!, \verb!\!, \verb!\$!, \verb!<html>!. \section{Smart quotes, ellipses, dashes} -``Hello,'' said the spider. ```Shelob' is my name.'' +``Hello,'' said the spider. ``\,`Shelob' is my name.'' `A', `B', and `C' are letters. `Oak,' `elm,' and `beech' are names of trees. So is `pine.' -`He said, ``I want to go.''' Were you alive in the 70's? +`He said, ``I want to go.''\,' Were you alive in the 70's? Here is some quoted `\verb!code!' and a ``\href{http://example.com/?foo=1&bar=2}{quoted link}''. |