ad273dbe5d
git-subtree-dir: backend/goldmark git-subtree-split: 379bf24a47e6ef07f34d7536aead86d8792ac300
40 lines
948 B
Plaintext
40 lines
948 B
Plaintext
1
|
|
//- - - - - - - - -//
|
|
~~Hi~~ Hello, world!
|
|
//- - - - - - - - -//
|
|
<p><del>Hi</del> Hello, world!</p>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
2
|
|
//- - - - - - - - -//
|
|
This ~~has a
|
|
|
|
new paragraph~~.
|
|
//- - - - - - - - -//
|
|
<p>This ~~has a</p>
|
|
<p>new paragraph~~.</p>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
3
|
|
//- - - - - - - - -//
|
|
~Hi~ Hello, world!
|
|
//- - - - - - - - -//
|
|
<p><del>Hi</del> Hello, world!</p>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
4: Three or more tildes do not create a strikethrough
|
|
//- - - - - - - - -//
|
|
This will ~~~not~~~ strike.
|
|
//- - - - - - - - -//
|
|
<p>This will ~~~not~~~ strike.</p>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
5: Leading three or more tildes do not create a strikethrough, create a code block
|
|
//- - - - - - - - -//
|
|
~~~Hi~~~ Hello, world!
|
|
//- - - - - - - - -//
|
|
<pre><code class="language-Hi~~~"></code></pre>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
|