diff options
| author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-07-18 19:15:42 +0000 | 
|---|---|---|
| committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-07-18 19:15:42 +0000 | 
| commit | f9ec6797bd50d3c2d63c3b35ec17d8a49ece94f0 (patch) | |
| tree | e2b07b114d014488367bdc822dab131419f72266 /tests | |
| parent | d84c678cdcead4f1203596476fa197f97c075234 (diff) | |
| download | pandoc-f9ec6797bd50d3c2d63c3b35ec17d8a49ece94f0.tar.gz | |
Changed escapes in markdown writer.
- >, not <, is escapable in standard markdown.!
- also # is now escaped
- Partiall resolves Issue #96.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1600 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/writer.markdown | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/tests/writer.markdown b/tests/writer.markdown index 6bbfe257c..f377816c6 100644 --- a/tests/writer.markdown +++ b/tests/writer.markdown @@ -72,7 +72,7 @@ E-mail style:  >   > > nested -This should not be a block quote: 2 > 1. +This should not be a block quote: 2 \> 1.  And a following paragraph. @@ -537,9 +537,9 @@ AT&T is another way to write it.  This & that. -4 \< 5. +4 < 5. -6 > 5. +6 \> 5.  Backslash: \\ @@ -561,9 +561,9 @@ Left paren: (  Right paren: ) -Greater-than: > +Greater-than: \> -Hash: # +Hash: \#  Period: . | 
