diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2015-04-07 21:01:55 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2018-07-31 11:40:59 -0400 |
commit | cba86d6175d00b897d6f5c4b3fec640e7309de60 (patch) | |
tree | d91586e9e45ebcd09851e26cc0c09c6ddf6a842c /tests/misc/underscores.html | |
parent | 15acbdec8c9357b78435af707140b0278cf376b2 (diff) | |
download | markdown-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/underscores.html')
-rw-r--r-- | tests/misc/underscores.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 |