mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2025-09-14 16:54:05 +07:00
Add markdown format support (#25)
Co-authored-by: Dawid Dziurla <dawidd0811@gmail.com>
This commit is contained in:
2
node_modules/showdown/test/features/literalMidWordAsterisks/#478.single-character-bolding.html
generated
vendored
Normal file
2
node_modules/showdown/test/features/literalMidWordAsterisks/#478.single-character-bolding.html
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
<p>Click the <strong>X</strong></p>
|
||||
<p>Click the <strong>X</strong> button and then the <strong>OK</strong> button</p>
|
3
node_modules/showdown/test/features/literalMidWordAsterisks/#478.single-character-bolding.md
generated
vendored
Normal file
3
node_modules/showdown/test/features/literalMidWordAsterisks/#478.single-character-bolding.md
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
Click the **X**
|
||||
|
||||
Click the **X** button and then the **OK** button
|
29
node_modules/showdown/test/features/literalMidWordAsterisks/basic.html
generated
vendored
Normal file
29
node_modules/showdown/test/features/literalMidWordAsterisks/basic.html
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
<p>this is a sentence*with*mid asterisks</p>
|
||||
<p>this is a sentence**with**two mid asterisks</p>
|
||||
<p>this is a sentence***with***three mid asterisks</p>
|
||||
<p>this is double*asterisk*mid word with another**asterisk**word</p>
|
||||
<p>this is double**asterisk**mid word with another**asterisk**word</p>
|
||||
<p>this is double***asterisk***mid word with another***asterisk***word</p>
|
||||
<p>this is double*asterisk**mid word with another***asterisk*word</p>
|
||||
<p>this is double**asterisk*mid word with another***asterisk**word</p>
|
||||
<p>this is a sentence with just*one asterisk</p>
|
||||
<p>this is a sentence with just**one asterisk</p>
|
||||
<p>this is a sentence with just***one asterisk</p>
|
||||
<p>this is double**asterisk**mid word</p>
|
||||
<p>this has just**one double asterisk</p>
|
||||
<p>this has just***one triple asterisk</p>
|
||||
<p>this <em>should be parsed</em> as emphasis</p>
|
||||
<p>this <strong>should be parsed</strong> as bold</p>
|
||||
<p>this <strong><em>should be parsed</em></strong> as bold and emphasis</p>
|
||||
<p>emphasis at <em>end of sentence</em></p>
|
||||
<p>bold at <strong>end of sentence</strong></p>
|
||||
<p>bold and emphasis at <strong><em>end of sentence</em></strong></p>
|
||||
<p><em>emphasis at</em> line start</p>
|
||||
<p><strong>bold at</strong> line start</p>
|
||||
<p><strong><em>bold and emphasis at</em></strong> line start</p>
|
||||
<p>multi <em>line emphasis
|
||||
yeah it is</em> yeah</p>
|
||||
<p>multi <strong>line emphasis
|
||||
yeah it is</strong> yeah</p>
|
||||
<p>multi <strong><em>line emphasis
|
||||
yeah it is</em></strong> yeah</p>
|
56
node_modules/showdown/test/features/literalMidWordAsterisks/basic.md
generated
vendored
Normal file
56
node_modules/showdown/test/features/literalMidWordAsterisks/basic.md
generated
vendored
Normal file
@ -0,0 +1,56 @@
|
||||
this is a sentence*with*mid asterisks
|
||||
|
||||
this is a sentence**with**two mid asterisks
|
||||
|
||||
this is a sentence***with***three mid asterisks
|
||||
|
||||
this is double*asterisk*mid word with another**asterisk**word
|
||||
|
||||
this is double**asterisk**mid word with another**asterisk**word
|
||||
|
||||
this is double***asterisk***mid word with another***asterisk***word
|
||||
|
||||
this is double*asterisk**mid word with another***asterisk*word
|
||||
|
||||
this is double**asterisk*mid word with another***asterisk**word
|
||||
|
||||
this is a sentence with just*one asterisk
|
||||
|
||||
this is a sentence with just**one asterisk
|
||||
|
||||
this is a sentence with just***one asterisk
|
||||
|
||||
this is double**asterisk**mid word
|
||||
|
||||
this has just**one double asterisk
|
||||
|
||||
this has just***one triple asterisk
|
||||
|
||||
this *should be parsed* as emphasis
|
||||
|
||||
this **should be parsed** as bold
|
||||
|
||||
this ***should be parsed*** as bold and emphasis
|
||||
|
||||
emphasis at *end of sentence*
|
||||
|
||||
bold at **end of sentence**
|
||||
|
||||
bold and emphasis at ***end of sentence***
|
||||
|
||||
*emphasis at* line start
|
||||
|
||||
**bold at** line start
|
||||
|
||||
***bold and emphasis at*** line start
|
||||
|
||||
multi *line emphasis
|
||||
yeah it is* yeah
|
||||
|
||||
|
||||
multi **line emphasis
|
||||
yeah it is** yeah
|
||||
|
||||
|
||||
multi ***line emphasis
|
||||
yeah it is*** yeah
|
7
node_modules/showdown/test/features/literalMidWordAsterisks/punctation-test.html
generated
vendored
Normal file
7
node_modules/showdown/test/features/literalMidWordAsterisks/punctation-test.html
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
<p><strong>Bold:</strong></p>
|
||||
<p><strong>Bold</strong></p>
|
||||
<p><strong>Bold</strong>:</p>
|
||||
<ul>
|
||||
<li><strong>Bold</strong><ul>
|
||||
<li>Tier 2</li></ul></li>
|
||||
</ul>
|
8
node_modules/showdown/test/features/literalMidWordAsterisks/punctation-test.md
generated
vendored
Normal file
8
node_modules/showdown/test/features/literalMidWordAsterisks/punctation-test.md
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
**Bold:**
|
||||
|
||||
**Bold**
|
||||
|
||||
**Bold**:
|
||||
|
||||
- **Bold**
|
||||
- Tier 2
|
Reference in New Issue
Block a user