aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-10-02 21:51:34 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2016-10-02 21:51:34 +0200
commit46d8b42da5d42b981bc56c49416cec15abaf2d09 (patch)
treead6c91bd77cca875f47fbb369256e994d9f59dd7 /tests
parenta99d81dce3fc53d177e505d54170197ecd3f6c1c (diff)
downloadpandoc-46d8b42da5d42b981bc56c49416cec15abaf2d09.tar.gz
AsciiDoc writer: avoid unnecessary use of "unconstrained" emphasis.
In AsciiDoc, you must use a special form of emphasis (double `__`) for intraword emphasis. Pandoc was previously using this more than necessary. Closes #3068.
Diffstat (limited to 'tests')
-rw-r--r--tests/writer.asciidoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/writer.asciidoc b/tests/writer.asciidoc
index 8d0973675..2bf62e36f 100644
--- a/tests/writer.asciidoc
+++ b/tests/writer.asciidoc
@@ -435,11 +435,11 @@ Hr’s:
Inline Markup
-------------
-This is __emphasized__, and so __is this__.
+This is _emphasized_, and so _is this_.
-This is **strong**, and so **is this**.
+This is *strong*, and so *is this*.
-An __link:/url[emphasized link]__.
+An _link:/url[emphasized link]_.
*_This is strong and em._*
@@ -451,7 +451,7 @@ So is *_this_* word.
This is code: `>`, `$`, `\`, `\$`, `<html>`.
-[line-through]*This is __strikeout__.*
+[line-through]*This is _strikeout_.*
Superscripts: a^bc^d a^_hello_^ a^hello there^.