mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2025-09-09 22:34:06 +07:00
Add markdown format support (#25)
Co-authored-by: Dawid Dziurla <dawidd0811@gmail.com>
This commit is contained in:
1
node_modules/showdown/test/features/simplifiedAutoLink/autolinks-with-magic-chars.html
generated
vendored
Normal file
1
node_modules/showdown/test/features/simplifiedAutoLink/autolinks-with-magic-chars.html
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
<p><a href="http://www.foobar.com/blegh#**foobar**bazinga">http://www.foobar.com/blegh#**foobar**bazinga</a></p>
|
1
node_modules/showdown/test/features/simplifiedAutoLink/autolinks-with-magic-chars.md
generated
vendored
Normal file
1
node_modules/showdown/test/features/simplifiedAutoLink/autolinks-with-magic-chars.md
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
http://www.foobar.com/blegh#**foobar**bazinga
|
3
node_modules/showdown/test/features/simplifiedAutoLink/blockquote.html
generated
vendored
Normal file
3
node_modules/showdown/test/features/simplifiedAutoLink/blockquote.html
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
<blockquote>
|
||||
<p><a href="http://www.google.com">http://www.google.com</a></p>
|
||||
</blockquote>
|
1
node_modules/showdown/test/features/simplifiedAutoLink/blockquote.md
generated
vendored
Normal file
1
node_modules/showdown/test/features/simplifiedAutoLink/blockquote.md
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
> http://www.google.com
|
1
node_modules/showdown/test/features/simplifiedAutoLink/disallow-underscores.html
generated
vendored
Normal file
1
node_modules/showdown/test/features/simplifiedAutoLink/disallow-underscores.html
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
<p><a href="http://en.wikipedia.org/wiki/Tourism_in_Germany">http://en.wikipedia.org/wiki/Tourism_in_Germany</a></p>
|
1
node_modules/showdown/test/features/simplifiedAutoLink/disallow-underscores.md
generated
vendored
Normal file
1
node_modules/showdown/test/features/simplifiedAutoLink/disallow-underscores.md
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
http://en.wikipedia.org/wiki/Tourism_in_Germany
|
1
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-inside-a-tags.html
generated
vendored
Normal file
1
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-inside-a-tags.html
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
<p><a href="http://www.google.com">www.google.com</a></p>
|
1
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-inside-a-tags.md
generated
vendored
Normal file
1
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-inside-a-tags.md
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
<a href="http://www.google.com">www.google.com</a>
|
6
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-inside-code.html
generated
vendored
Normal file
6
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-inside-code.html
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
<pre><code>some code with
|
||||
a link
|
||||
www.google.com
|
||||
|
||||
and another link http://www.google.com
|
||||
</code></pre>
|
5
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-inside-code.md
generated
vendored
Normal file
5
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-inside-code.md
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
some code with
|
||||
a link
|
||||
www.google.com
|
||||
|
||||
and another link http://www.google.com
|
1
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-reference-links.html
generated
vendored
Normal file
1
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-reference-links.html
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
<p><img src="https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png" alt="Showdown" /></p>
|
3
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-reference-links.md
generated
vendored
Normal file
3
node_modules/showdown/test/features/simplifiedAutoLink/does-not-parse-reference-links.md
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
![Showdown][sd-logo]
|
||||
|
||||
[sd-logo]: https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png
|
7
node_modules/showdown/test/features/simplifiedAutoLink/emphasis-and-strikethrough.html
generated
vendored
Normal file
7
node_modules/showdown/test/features/simplifiedAutoLink/emphasis-and-strikethrough.html
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
<p><em><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></em></p>
|
||||
<p><strong><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></strong></p>
|
||||
<p><strong><em><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></em></strong></p>
|
||||
<p><del><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></del></p>
|
||||
<p><em><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></em></p>
|
||||
<p><strong><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></strong></p>
|
||||
<p><strong><em><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></em></strong></p>
|
13
node_modules/showdown/test/features/simplifiedAutoLink/emphasis-and-strikethrough.md
generated
vendored
Normal file
13
node_modules/showdown/test/features/simplifiedAutoLink/emphasis-and-strikethrough.md
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
*http://www.google.com/foobar*
|
||||
|
||||
**http://www.google.com/foobar**
|
||||
|
||||
***http://www.google.com/foobar***
|
||||
|
||||
~~http://www.google.com/foobar~~
|
||||
|
||||
_http://www.google.com/foobar_
|
||||
|
||||
__http://www.google.com/foobar__
|
||||
|
||||
___http://www.google.com/foobar___
|
11
node_modules/showdown/test/features/simplifiedAutoLink/ordered-lists.html
generated
vendored
Normal file
11
node_modules/showdown/test/features/simplifiedAutoLink/ordered-lists.html
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<ol>
|
||||
<li><a href="http://www.google.com/listitem1">http://www.google.com/listitem1</a></li>
|
||||
<li><a href="http://www.google.com/listitem2">http://www.google.com/listitem2</a></li>
|
||||
<li><a href="http://www.google.com/listitem3">http://www.google.com/listitem3</a></li>
|
||||
</ol>
|
||||
<p>foo</p>
|
||||
<ol>
|
||||
<li><p><a href="http://www.google.com/listitem1">http://www.google.com/listitem1</a></p></li>
|
||||
<li><p><a href="http://www.google.com/listitem2">http://www.google.com/listitem2</a></p></li>
|
||||
<li><p><a href="http://www.google.com/listitem3">http://www.google.com/listitem3</a></p></li>
|
||||
</ol>
|
11
node_modules/showdown/test/features/simplifiedAutoLink/ordered-lists.md
generated
vendored
Normal file
11
node_modules/showdown/test/features/simplifiedAutoLink/ordered-lists.md
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
1. http://www.google.com/listitem1
|
||||
2. http://www.google.com/listitem2
|
||||
3. http://www.google.com/listitem3
|
||||
|
||||
foo
|
||||
|
||||
1. http://www.google.com/listitem1
|
||||
|
||||
2. http://www.google.com/listitem2
|
||||
|
||||
3. http://www.google.com/listitem3
|
6
node_modules/showdown/test/features/simplifiedAutoLink/text.html
generated
vendored
Normal file
6
node_modules/showdown/test/features/simplifiedAutoLink/text.html
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
<p><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></p>
|
||||
<p><a href="http://www.google.com/foobar">www.google.com/foobar</a></p>
|
||||
<p><a href="ftp://user:password@host.com:port/path">ftp://user:password@host.com:port/path</a></p>
|
||||
<p>this has some <a href="http://www.google.com/foobar">http://www.google.com/foobar</a> in text</p>
|
||||
<p>this has some <a href="http://www.google.com/foobar">www.google.com/foobar</a> in text</p>
|
||||
<p>this has some <a href="ftp://user:password@host.com:port/path">ftp://user:password@host.com:port/path</a> in text</p>
|
13
node_modules/showdown/test/features/simplifiedAutoLink/text.md
generated
vendored
Normal file
13
node_modules/showdown/test/features/simplifiedAutoLink/text.md
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
http://www.google.com/foobar
|
||||
|
||||
www.google.com/foobar
|
||||
|
||||
ftp://user:password@host.com:port/path
|
||||
|
||||
this has some http://www.google.com/foobar in text
|
||||
|
||||
this has some www.google.com/foobar in text
|
||||
|
||||
this has some ftp://user:password@host.com:port/path in text
|
||||
|
||||
|
11
node_modules/showdown/test/features/simplifiedAutoLink/unordered-lists.html
generated
vendored
Normal file
11
node_modules/showdown/test/features/simplifiedAutoLink/unordered-lists.html
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<ul>
|
||||
<li><a href="http://www.google.com/foo">http://www.google.com/foo</a></li>
|
||||
<li><a href="http://www.google.com/bar">http://www.google.com/bar</a></li>
|
||||
<li><a href="http://www.google.com/baz">http://www.google.com/baz</a></li>
|
||||
</ul>
|
||||
<p>a</p>
|
||||
<ul>
|
||||
<li><p><a href="http://www.google.com/foo">http://www.google.com/foo</a></p></li>
|
||||
<li><p><a href="http://www.google.com/bar">http://www.google.com/bar</a></p></li>
|
||||
<li><p><a href="http://www.google.com/baz">http://www.google.com/baz</a></p></li>
|
||||
</ul>
|
11
node_modules/showdown/test/features/simplifiedAutoLink/unordered-lists.md
generated
vendored
Normal file
11
node_modules/showdown/test/features/simplifiedAutoLink/unordered-lists.md
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
- http://www.google.com/foo
|
||||
- http://www.google.com/bar
|
||||
- http://www.google.com/baz
|
||||
|
||||
a
|
||||
|
||||
- http://www.google.com/foo
|
||||
|
||||
- http://www.google.com/bar
|
||||
|
||||
- http://www.google.com/baz
|
Reference in New Issue
Block a user