Add markdown format support (#25)

Co-authored-by: Dawid Dziurla <dawidd0811@gmail.com>
This commit is contained in:
dougpagani
2020-11-30 12:51:34 -05:00
committed by GitHub
parent d1b07d9ed7
commit 2095e6ffe3
941 changed files with 37481 additions and 15 deletions

View File

@ -0,0 +1,4 @@
<p>This is a first paragraph,
on multiple lines.</p>
<p>This is a second paragraph.
There are spaces in between the two.</p>

View File

@ -0,0 +1,5 @@
This is a first paragraph,
on multiple lines.
This is a second paragraph.
There are spaces in between the two.

View File

@ -0,0 +1,4 @@
<p>This is a first paragraph,
on multiple lines.</p>
<p>This is a second paragraph
which has multiple lines too.</p>

View File

@ -0,0 +1,5 @@
This is a first paragraph,
on multiple lines.
This is a second paragraph
which has multiple lines too.

View File

@ -0,0 +1,2 @@
<p>A first paragraph.</p>
<p>A second paragraph after 3 CR (carriage return).</p>

View File

@ -0,0 +1,5 @@
A first paragraph.
A second paragraph after 3 CR (carriage return).

View File

@ -0,0 +1,2 @@
<p>This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph on 1 line.</p>
<p>A few spaces and a new long long long long long long long long long long long long long long long long paragraph on 1 line.</p>

View File

@ -0,0 +1,3 @@
This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph on 1 line.
A few spaces and a new long long long long long long long long long long long long long long long long paragraph on 1 line.

View File

@ -0,0 +1,2 @@
<p>This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph on 1 line.</p>
<p>1 tab to separate them and a new long long long long long long long long long long long long long long long long paragraph on 1 line.</p>

View File

@ -0,0 +1,3 @@
This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph on 1 line.
1 tab to separate them and a new long long long long long long long long long long long long long long long long paragraph on 1 line.

View File

@ -0,0 +1,2 @@
<p>This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph on 1 line.</p>
<p>A new long long long long long long long long long long long long long long long long paragraph on 1 line.</p>

View File

@ -0,0 +1,3 @@
This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph on 1 line.
A new long long long long long long long long long long long long long long long long paragraph on 1 line.

3
node_modules/showdown/test/karlcow/EOL-CR+LF.html generated vendored Normal file
View File

@ -0,0 +1,3 @@
<p>These lines all end with end of line (EOL) sequences.</p>
<p>Seriously, they really do.</p>
<p>If you don't believe me: HEX EDIT!</p>

6
node_modules/showdown/test/karlcow/EOL-CR+LF.md generated vendored Normal file
View File

@ -0,0 +1,6 @@
These lines all end with end of line (EOL) sequences.
Seriously, they really do.
If you don't believe me: HEX EDIT!

1
node_modules/showdown/test/karlcow/EOL-CR.html generated vendored Normal file
View File

@ -0,0 +1 @@
<p>These lines all end with end of line (EOL) sequences.</p>

1
node_modules/showdown/test/karlcow/EOL-CR.md generated vendored Normal file
View File

@ -0,0 +1 @@
These lines all end with end of line (EOL) sequences.

3
node_modules/showdown/test/karlcow/EOL-LF.html generated vendored Normal file
View File

@ -0,0 +1,3 @@
<p>These lines all end with end of line (EOL) sequences.</p>
<p>Seriously, they really do.</p>
<p>If you don't believe me: HEX EDIT!</p>

6
node_modules/showdown/test/karlcow/EOL-LF.md generated vendored Normal file
View File

@ -0,0 +1,6 @@
These lines all end with end of line (EOL) sequences.
Seriously, they really do.
If you don't believe me: HEX EDIT!

View File

@ -0,0 +1 @@
<p>An ampersand &amp; in the text flow is escaped as an html entity.</p>

View File

@ -0,0 +1 @@
An ampersand & in the text flow is escaped as an html entity.

View File

@ -0,0 +1 @@
<p>There is an <a href="http://validator.w3.org/check?uri=http://www.w3.org/&verbose=1">ampersand</a> in the URI.</p>

1
node_modules/showdown/test/karlcow/ampersand-uri.md generated vendored Normal file
View File

@ -0,0 +1 @@
There is an [ampersand](http://validator.w3.org/check?uri=http://www.w3.org/&verbose=1) in the URI.

View File

@ -0,0 +1 @@
<p>This is *an asterisk which should stay as is.</p>

View File

@ -0,0 +1 @@
This is \*an asterisk which should stay as is.

1
node_modules/showdown/test/karlcow/asterisk.html generated vendored Normal file
View File

@ -0,0 +1 @@
<p>This is * an asterisk which should stay as is.</p>

1
node_modules/showdown/test/karlcow/asterisk.md generated vendored Normal file
View File

@ -0,0 +1 @@
This is * an asterisk which should stay as is.

View File

@ -0,0 +1,12 @@
<p>\ backslash
` backtick
* asterisk
_ underscore
{} curly braces
[] square brackets
() parentheses
# hash mark
+ plus sign
- minus sign (hyphen)
. dot
! exclamation mark</p>

12
node_modules/showdown/test/karlcow/backslash-escape.md generated vendored Normal file
View File

@ -0,0 +1,12 @@
\\ backslash
\` backtick
\* asterisk
\_ underscore
\{\} curly braces
\[\] square brackets
\(\) parentheses
\# hash mark
\+ plus sign
\- minus sign (hyphen)
\. dot
\! exclamation mark

View File

@ -0,0 +1,4 @@
<blockquote>
<h1>heading level 1</h1>
<p>paragraph</p>
</blockquote>

View File

@ -0,0 +1,3 @@
> # heading level 1
>
> paragraph

View File

@ -0,0 +1,4 @@
<blockquote>
<p>A blockquote with a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long line.</p>
<p>and a second very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long line.</p>
</blockquote>

View File

@ -0,0 +1,3 @@
>A blockquote with a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long line.
>and a second very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long line.

View File

@ -0,0 +1,3 @@
<blockquote>
<p>This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph in a blockquote.</p>
</blockquote>

View File

@ -0,0 +1 @@
>This a very long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long paragraph in a blockquote.

View File

@ -0,0 +1,5 @@
<blockquote>
<p>A blockquote
on multiple lines
like this.</p>
</blockquote>

View File

@ -0,0 +1,3 @@
> A blockquote
> on multiple lines
> like this.

View File

@ -0,0 +1,5 @@
<blockquote>
<p>A blockquote
on multiple lines
like this. </p>
</blockquote>

View File

@ -0,0 +1,3 @@
>A blockquote
>on multiple lines
>like this.

View File

@ -0,0 +1,7 @@
<blockquote>
<p>A blockquote
on multiple lines
like this.</p>
<p>But it has
two paragraphs.</p>
</blockquote>

View File

@ -0,0 +1,6 @@
>A blockquote
>on multiple lines
>like this.
>
>But it has
>two paragraphs.

View File

@ -0,0 +1,5 @@
<blockquote>
<p>A blockquote
on multiple lines
like this</p>
</blockquote>

View File

@ -0,0 +1,3 @@
>A blockquote
>on multiple lines
>like this

View File

@ -0,0 +1,7 @@
<blockquote>
<p>This is the first level of quoting.</p>
<blockquote>
<p>This is nested blockquote.</p>
</blockquote>
<p>Back to the first level.</p>
</blockquote>

View File

@ -0,0 +1,5 @@
> This is the first level of quoting.
>
> > This is nested blockquote.
>
> Back to the first level.

View File

@ -0,0 +1,6 @@
<blockquote>
<p>This is the first level of quoting.</p>
<blockquote>
<p>This is nested blockquote.</p>
</blockquote>
</blockquote>

View File

@ -0,0 +1,3 @@
> This is the first level of quoting.
>
> > This is nested blockquote.

View File

@ -0,0 +1,7 @@
<blockquote>
<p>This is the first level of quoting.</p>
<blockquote>
<p>This is nested blockquote.
Back to the first level.</p>
</blockquote>
</blockquote>

View File

@ -0,0 +1,3 @@
> This is the first level of quoting.
> > This is nested blockquote.
> Back to the first level.

View File

@ -0,0 +1,6 @@
<blockquote>
<p>This is the first level of quoting.</p>
<blockquote>
<p>This is nested blockquote.</p>
</blockquote>
</blockquote>

View File

@ -0,0 +1,2 @@
> This is the first level of quoting.
> > This is nested blockquote.

3
node_modules/showdown/test/karlcow/code-1-tab.html generated vendored Normal file
View File

@ -0,0 +1,3 @@
<pre><code>10 PRINT HELLO INFINITE
20 GOTO 10
</code></pre>

2
node_modules/showdown/test/karlcow/code-1-tab.md generated vendored Normal file
View File

@ -0,0 +1,2 @@
10 PRINT HELLO INFINITE
20 GOTO 10

View File

@ -0,0 +1,3 @@
<pre><code>10 PRINT &lt; &gt; &amp;
20 GOTO 10
</code></pre>

View File

@ -0,0 +1,2 @@
10 PRINT < > &
20 GOTO 10

View File

@ -0,0 +1,3 @@
<pre><code>10 PRINT HELLO INFINITE
20 GOTO 10
</code></pre>

2
node_modules/showdown/test/karlcow/code-4-spaces.md generated vendored Normal file
View File

@ -0,0 +1,2 @@
10 PRINT HELLO INFINITE
20 GOTO 10

View File

@ -0,0 +1 @@
<p>as<em>te</em>risks</p>

1
node_modules/showdown/test/karlcow/em-middle-word.md generated vendored Normal file
View File

@ -0,0 +1 @@
as*te*risks

1
node_modules/showdown/test/karlcow/em-star.html generated vendored Normal file
View File

@ -0,0 +1 @@
<p><em>single asterisks</em></p>

1
node_modules/showdown/test/karlcow/em-star.md generated vendored Normal file
View File

@ -0,0 +1 @@
*single asterisks*

View File

@ -0,0 +1 @@
<p><em>single underscores</em></p>

1
node_modules/showdown/test/karlcow/em-underscore.md generated vendored Normal file
View File

@ -0,0 +1 @@
_single underscores_

View File

@ -0,0 +1 @@
<p>HTML entities are written using ampersand notation: &copy;</p>

View File

@ -0,0 +1 @@
HTML entities are written using ampersand notation: &copy;

View File

@ -0,0 +1 @@
<h1>This is an H1</h1>

View File

@ -0,0 +1,2 @@
This is an H1
=============

View File

@ -0,0 +1 @@
<h1>This is an H1</h1>

View File

@ -0,0 +1 @@
# This is an H1 #

View File

@ -0,0 +1 @@
<p># This is an H1</p>

View File

@ -0,0 +1,2 @@
# This is an H1

View File

@ -0,0 +1,2 @@
<h1>this is an h1 with two trailing spaces</h1>
<p>A new paragraph.</p>

View File

@ -0,0 +1,2 @@
# this is an h1 with two trailing spaces
A new paragraph.

View File

@ -0,0 +1 @@
<h1>This is an H1</h1>

View File

@ -0,0 +1 @@
# This is an H1

View File

@ -0,0 +1 @@
<h2>This is an H2</h2>

View File

@ -0,0 +1,2 @@
This is an H2
-------------

View File

@ -0,0 +1 @@
<h2>This is an H2</h2>

View File

@ -0,0 +1 @@
## This is an H2 ##

View File

@ -0,0 +1 @@
<h2>This is an H2</h2>

View File

@ -0,0 +1 @@
## This is an H2

View File

@ -0,0 +1 @@
<h3>This is an H3</h3>

View File

@ -0,0 +1 @@
### This is an H3 ###

View File

@ -0,0 +1 @@
<h3>This is an H3</h3>

View File

@ -0,0 +1 @@
### This is an H3

View File

@ -0,0 +1 @@
<h4>This is an H4</h4>

View File

@ -0,0 +1 @@
#### This is an H4 ####

View File

@ -0,0 +1 @@
<h4>This is an H4</h4>

View File

@ -0,0 +1 @@
#### This is an H4

View File

@ -0,0 +1 @@
<h5>This is an H5</h5>

View File

@ -0,0 +1 @@
##### This is an H5 #####

View File

@ -0,0 +1 @@
<h5>This is an H5</h5>

View File

@ -0,0 +1 @@
##### This is an H5

View File

@ -0,0 +1 @@
<h6>This is an H6</h6>

View File

@ -0,0 +1 @@
###### This is an H6 ######

View File

@ -0,0 +1 @@
<h6>This is an H6</h6>

View File

@ -0,0 +1 @@
###### This is an H6

View File

@ -0,0 +1 @@
<hr />

View File

@ -0,0 +1 @@
- - -

View File

@ -0,0 +1 @@
<hr />

View File

@ -0,0 +1 @@
---

Some files were not shown because too many files have changed in this diff Show More