aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2015-04-07 21:01:55 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2018-07-31 11:40:59 -0400
commitcba86d6175d00b897d6f5c4b3fec640e7309de60 (patch)
treed91586e9e45ebcd09851e26cc0c09c6ddf6a842c /tests/misc
parent15acbdec8c9357b78435af707140b0278cf376b2 (diff)
downloadmarkdown-cba86d6175d00b897d6f5c4b3fec640e7309de60.tar.gz
markdown-cba86d6175d00b897d6f5c4b3fec640e7309de60.tar.bz2
markdown-cba86d6175d00b897d6f5c4b3fec640e7309de60.zip
smart_emphasis keyword > legacy_em extension.
The smart_strong extension has been removed and its behavior is now the default (smart em and smart strong are the default). The legacy_em extension restores legacy behavior (no smart em or smart strong). This completes the removal of keywords. All parser behavior is now modified by extensions, not by keywords on the Markdown class.
Diffstat (limited to 'tests/misc')
-rw-r--r--tests/misc/em_strong_complex.html2
-rw-r--r--tests/misc/em_strong_complex.txt2
-rw-r--r--tests/misc/underscores.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/misc/em_strong_complex.html b/tests/misc/em_strong_complex.html
index 3befa70..65faddf 100644
--- a/tests/misc/em_strong_complex.html
+++ b/tests/misc/em_strong_complex.html
@@ -1,7 +1,7 @@
<p><em><strong>test test</strong> test test</em></p>
<p><strong><em>test test</em> test test</strong></p>
<p><strong><em>test</em></strong></p>
-<p><strong>test</strong>_</p>
+<p><strong>test</strong></p>
<p><strong><em>test</em> test</strong>_</p>
<p><strong><em>test</em> test</strong></p>
<p><em>test_test test_test</em></p>
diff --git a/tests/misc/em_strong_complex.txt b/tests/misc/em_strong_complex.txt
index 66f4ff1..0425971 100644
--- a/tests/misc/em_strong_complex.txt
+++ b/tests/misc/em_strong_complex.txt
@@ -4,7 +4,7 @@ ___test test_ test test__
___test___
-__test___
+__test__
___test_ test___
diff --git a/tests/misc/underscores.html b/tests/misc/underscores.html
index 54bd9f9..72d51b8 100644
--- a/tests/misc/underscores.html
+++ b/tests/misc/underscores.html
@@ -1,6 +1,6 @@
<p>THIS_SHOULD_STAY_AS_IS</p>
<p>Here is some <em>emphasis</em>, ok?</p>
<p>Ok, at least <em>this</em> should work.</p>
-<p>THIS<strong>SHOULD</strong>STAY</p>
+<p>THIS__SHOULD__STAY</p>
<p>Here is some <strong>strong</strong> stuff.</p>
<p>THIS<strong><em>SHOULD</em></strong>STAY?</p> \ No newline at end of file