Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
1.2 KiB
104 lines
1.2 KiB
.
|
|
~~Strikeout~~
|
|
.
|
|
<p><del>Strikeout</del></p>
|
|
.
|
|
|
|
.
|
|
x ~~~~foo~~ bar~~
|
|
.
|
|
<p>x <del><del>foo</del> bar</del></p>
|
|
.
|
|
|
|
.
|
|
x ~~foo ~~bar~~~~
|
|
.
|
|
<p>x <del>foo <del>bar</del></del></p>
|
|
.
|
|
|
|
.
|
|
x ~~~~foo~~~~
|
|
.
|
|
<p>x <del><del>foo</del></del></p>
|
|
.
|
|
|
|
# Disabled since we moved subsripts to plugins
|
|
#.
|
|
#x ~~~foo~~~
|
|
#.
|
|
#<p>x <del><sub>foo</sub></del></p>
|
|
#.
|
|
|
|
Strikeouts have the same priority as emphases:
|
|
|
|
.
|
|
**~~test**~~
|
|
|
|
~~**test~~**
|
|
.
|
|
<p><strong>~~test</strong>~~</p>
|
|
<p><del>**test</del>**</p>
|
|
.
|
|
|
|
Strikeouts have the same priority as emphases with respect to links:
|
|
.
|
|
[~~link]()~~
|
|
|
|
~~[link~~]()
|
|
.
|
|
<p><a href="">~~link</a>~~</p>
|
|
<p>~~<a href="">link~~</a></p>
|
|
.
|
|
|
|
Strikeouts have the same priority as emphases with respect to backticks:
|
|
.
|
|
~~`code~~`
|
|
|
|
`~~code`~~
|
|
.
|
|
<p>~~<code>code~~</code></p>
|
|
<p><code>~~code</code>~~</p>
|
|
.
|
|
|
|
Nested strikeouts:
|
|
.
|
|
~~foo ~~bar~~ baz~~
|
|
.
|
|
<p><del>foo <del>bar</del> baz</del></p>
|
|
.
|
|
|
|
.
|
|
~~f **o ~~o b~~ a** r~~
|
|
.
|
|
<p><del>f <strong>o <del>o b</del> a</strong> r</del></p>
|
|
.
|
|
|
|
Should not have a whitespace between text and "~~":
|
|
.
|
|
foo ~~ bar ~~ baz
|
|
.
|
|
<p>foo ~~ bar ~~ baz</p>
|
|
.
|
|
|
|
|
|
Newline should be considered a whitespace:
|
|
|
|
.
|
|
~~test
|
|
~~
|
|
|
|
~~
|
|
test~~
|
|
|
|
~~
|
|
test
|
|
~~
|
|
.
|
|
<p>~~test
|
|
~~</p>
|
|
<p>~~
|
|
test~~</p>
|
|
<p>~~
|
|
test
|
|
~~</p>
|
|
.
|
|
|