mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
43e9448d6e
Github Flavored Markdown supports strikethrough (`<del>`) syntax using double tilde `~~` delimiters. This commit adds this feature to showdown through an option called "strikethrough". Related to #164
6 lines
113 B
HTML
6 lines
113 B
HTML
<p>a <del>strikethrough</del> word</p>
|
|
|
|
<p>this should~~not be parsed</p>
|
|
|
|
<p><del>strike-through text</del></p>
|