aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-12-05 05:33:24 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-12-05 05:33:24 +0000
commit8671bc5a1be38f6555e34d7ccc542ebbe91f69fd (patch)
treeb1dcbf74eb45462d3f6cb0493792fe2a94daf680 /README
parent94841b7602f3465cdb7a452989975d08e43fc694 (diff)
downloadpandoc-8671bc5a1be38f6555e34d7ccc542ebbe91f69fd.tar.gz
Markdown reader: Treat a backslash followed by a newline as hard linebreak.
Resolves Issue #154. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1646 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'README')
-rw-r--r--README9
1 files changed, 8 insertions, 1 deletions
diff --git a/README b/README
index 10dc66cc5..c1fd7cbde 100644
--- a/README
+++ b/README
@@ -463,7 +463,14 @@ which allows only the following characters to be backslash-escaped:
\`*_{}[]()>#+-.!
A backslash-escaped space is parsed as a nonbreaking space. It will
-appear in TeX output as '~' and in HTML and XML as '\&#160;' or '\&nbsp;'.
+appear in TeX output as '`~`' and in HTML and XML as '`\&#160;`' or
+'`\&nbsp;`'.
+
+A backslash-escaped newline (i.e. a backslash occurring at the end of
+a line) is parsed as a hard line break. It will appear in TeX output as
+'`\\`' and in HTML as '`<br />`'. This is a nice alternative to
+markdown's "invisible" way of indicating hard line breaks using
+two trailing spaces on a line.
Subscripts and superscripts
---------------------------