1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

Update commonmark cache

This commit is contained in:
Aidan Woods 2019-04-10 07:02:52 +01:00
parent 9eb6a02334
commit efcccb3256
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9
779 changed files with 1847 additions and 1414 deletions

View File

@ -0,0 +1 @@
<pre><code></code></pre>

View File

@ -0,0 +1,2 @@
```
```

View File

@ -1,2 +1,4 @@
<pre><code>aaa <pre><code>```
aaa
```
</code></pre> </code></pre>

View File

@ -1,3 +1,3 @@
``` ```
aaa aaa
``` ```

View File

@ -1,3 +1,3 @@
``` ```
aaa aaa
``` ```

View File

@ -0,0 +1,2 @@
<pre><code>aaa
</code></pre>

View File

@ -0,0 +1,3 @@
```
aaa
```

View File

@ -1,4 +1,3 @@
<p>foo</p> <pre><code>aaa
<pre><code>bar ~~~ ~~
</code></pre> </code></pre>
<p>baz</p>

View File

@ -1,5 +1,3 @@
foo ~~~~~~
``` aaa
bar ~~~ ~~
```
baz

View File

@ -1,4 +1,4 @@
<h2>foo</h2> <p>foo</p>
<pre><code>bar <pre><code>bar
</code></pre> </code></pre>
<h1>baz</h1> <p>baz</p>

View File

@ -1,6 +1,5 @@
foo foo
--- ```
~~~
bar bar
~~~ ```
# baz baz

View File

@ -1,4 +1,4 @@
<pre><code class="language-ruby">def foo(x) <h2>foo</h2>
return 3 <pre><code>bar
end
</code></pre> </code></pre>
<h1>baz</h1>

View File

@ -1,5 +1,6 @@
```ruby foo
def foo(x) ---
return 3 ~~~
end bar
``` ~~~
# baz

View File

@ -1,5 +1,5 @@
~~~~ ruby startline=3 $%@#$ ```ruby
def foo(x) def foo(x)
return 3 return 3
end end
~~~~~~~ ```

View File

@ -1 +1,4 @@
<pre><code class="language-;"></code></pre> <pre><code class="language-ruby">def foo(x)
return 3
end
</code></pre>

View File

@ -1,2 +1,5 @@
````; ~~~~ ruby startline=3 $%@#$
```` def foo(x)
return 3
end
~~~~~~~

View File

@ -1,2 +1 @@
<p><code>aa</code> <pre><code class="language-;"></code></pre>
foo</p>

View File

@ -1,2 +1,2 @@
``` aa ``` ````;
foo ````

View File

@ -0,0 +1,2 @@
<p><code>aa</code>
foo</p>

View File

@ -0,0 +1,2 @@
``` aa ```
foo

View File

@ -0,0 +1,2 @@
<pre><code>``` aaa
</code></pre>

View File

@ -0,0 +1,3 @@
```
``` aaa
```

View File

@ -1,8 +1,6 @@
<table> <table><tr><td>
<tr> <pre>
<td> **Hello**,
hi <p><em>world</em>.
</td> </pre></p>
</tr> </td></tr></table>
</table>
<p>okay.</p>

View File

@ -1,9 +1,7 @@
<table> <table><tr><td>
<tr> <pre>
<td> **Hello**,
hi
</td>
</tr>
</table>
okay. _world_.
</pre>
</td></tr></table>

View File

@ -1,3 +1,8 @@
<div> <table>
*hello* <tr>
<foo><a> <td>
hi
</td>
</tr>
</table>
<p>okay.</p>

View File

@ -1,3 +1,9 @@
<div> <table>
*hello* <tr>
<foo><a> <td>
hi
</td>
</tr>
</table>
okay.

View File

@ -1,2 +1,3 @@
</div> <div>
*foo* *hello*
<foo><a>

View File

@ -1,2 +1,3 @@
</div> <div>
*foo* *hello*
<foo><a>

View File

@ -1,3 +1,2 @@
<DIV CLASS="foo"> </div>
<p><em>Markdown</em></p> *foo*
</DIV>

View File

@ -1,5 +1,2 @@
<DIV CLASS="foo"> </div>
*foo*
*Markdown*
</DIV>

View File

@ -0,0 +1,3 @@
<DIV CLASS="foo">
<p><em>Markdown</em></p>
</DIV>

View File

@ -0,0 +1,5 @@
<DIV CLASS="foo">
*Markdown*
</DIV>

View File

@ -0,0 +1,3 @@
<div>
*foo*
<p><em>bar</em></p>

View File

@ -0,0 +1,4 @@
<div>
*foo*
*bar*

View File

@ -1,3 +1 @@
<table><tr><td> <div><a href="bar">*foo*</a></div>
foo
</td></tr></table>

View File

@ -1,3 +1 @@
<table><tr><td> <div><a href="bar">*foo*</a></div>
foo
</td></tr></table>

View File

@ -1,4 +1,3 @@
<div></div> <table><tr><td>
``` c foo
int x = 33; </td></tr></table>
```

View File

@ -1,4 +1,3 @@
<div></div> <table><tr><td>
``` c foo
int x = 33; </td></tr></table>
```

View File

@ -0,0 +1,4 @@
<div></div>
``` c
int x = 33;
```

View File

@ -0,0 +1,4 @@
<div></div>
``` c
int x = 33;
```

View File

@ -0,0 +1,3 @@
<Warning>
*bar*
</Warning>

View File

@ -0,0 +1,3 @@
<Warning>
*bar*
</Warning>

View File

@ -1,7 +1 @@
<pre language="haskell"><code> <p><del><em>foo</em></del></p>
import Text.HTML.TagSoup
main :: IO ()
main = print $ parseTags tags
</code></pre>
<p>okay</p>

View File

@ -1,7 +1 @@
<pre language="haskell"><code> <del>*foo*</del>
import Text.HTML.TagSoup
main :: IO ()
main = print $ parseTags tags
</code></pre>
okay

View File

@ -1,6 +1,7 @@
<script type="text/javascript"> <pre language="haskell"><code>
// JavaScript example import Text.HTML.TagSoup
document.getElementById("demo").innerHTML = "Hello JavaScript!"; main :: IO ()
</script> main = print $ parseTags tags
</code></pre>
<p>okay</p> <p>okay</p>

View File

@ -1,6 +1,7 @@
<script type="text/javascript"> <pre language="haskell"><code>
// JavaScript example import Text.HTML.TagSoup
document.getElementById("demo").innerHTML = "Hello JavaScript!"; main :: IO ()
</script> main = print $ parseTags tags
</code></pre>
okay okay

View File

@ -1,7 +1,6 @@
<style <script type="text/javascript">
type="text/css"> // JavaScript example
h1 {color:red;}
p {color:blue;} document.getElementById("demo").innerHTML = "Hello JavaScript!";
</style> </script>
<p>okay</p> <p>okay</p>

View File

@ -1,7 +1,6 @@
<style <script type="text/javascript">
type="text/css"> // JavaScript example
h1 {color:red;}
p {color:blue;} document.getElementById("demo").innerHTML = "Hello JavaScript!";
</style> </script>
okay okay

View File

@ -1,4 +1,7 @@
<style <style
type="text/css"> type="text/css">
h1 {color:red;}
foo p {color:blue;}
</style>
<p>okay</p>

View File

@ -1,4 +1,7 @@
<style <style
type="text/css"> type="text/css">
h1 {color:red;}
foo p {color:blue;}
</style>
okay

View File

@ -0,0 +1,4 @@
<style
type="text/css">
foo

View File

@ -0,0 +1,4 @@
<style
type="text/css">
foo

View File

@ -1,2 +1,2 @@
<!-- foo -->*bar* <style>p{color:red;}</style>
<p><em>baz</em></p> <p><em>foo</em></p>

View File

@ -1,2 +1,2 @@
<!-- foo -->*bar* <style>p{color:red;}</style>
*baz* *foo*

View File

@ -1,3 +1,2 @@
<script> <!-- foo -->*bar*
foo <p><em>baz</em></p>
</script>1. *bar*

View File

@ -1,3 +1,2 @@
<script> <!-- foo -->*bar*
foo *baz*
</script>1. *bar*

View File

@ -1,5 +1,3 @@
<!-- Foo <script>
foo
bar </script>1. *bar*
baz -->
<p>okay</p>

View File

@ -1,5 +1,3 @@
<!-- Foo <script>
foo
bar </script>1. *bar*
baz -->
okay

View File

@ -1,6 +1,5 @@
<?php <!-- Foo
echo '>'; bar
baz -->
?>
<p>okay</p> <p>okay</p>

View File

@ -1,6 +1,5 @@
<?php <!-- Foo
echo '>'; bar
baz -->
?>
okay okay

View File

@ -1 +1,6 @@
<!DOCTYPE html> <?php
echo '>';
?>
<p>okay</p>

View File

@ -1 +1,6 @@
<!DOCTYPE html> <?php
echo '>';
?>
okay

View File

@ -1,13 +1 @@
<![CDATA[ <!DOCTYPE html>
function matchwo(a,b)
{
if (a < b && a < 0) then {
return 1;
} else {
return 0;
}
}
]]>
<p>okay</p>

View File

@ -1,13 +1 @@
<![CDATA[ <!DOCTYPE html>
function matchwo(a,b)
{
if (a < b && a < 0) then {
return 1;
} else {
return 0;
}
}
]]>
okay

View File

@ -1,3 +1,13 @@
<!-- foo --> <![CDATA[
<pre><code>&lt;!-- foo --&gt; function matchwo(a,b)
</code></pre> {
if (a < b && a < 0) then {
return 1;
} else {
return 0;
}
}
]]>
<p>okay</p>

View File

@ -1,3 +1,13 @@
<!-- foo --> <![CDATA[
function matchwo(a,b)
{
if (a < b && a < 0) then {
return 1;
<!-- foo --> } else {
return 0;
}
}
]]>
okay

View File

@ -1,3 +1,3 @@
<div> <!-- foo -->
<pre><code>&lt;div&gt; <pre><code>&lt;!-- foo --&gt;
</code></pre> </code></pre>

View File

@ -1,3 +1,3 @@
<div> <!-- foo -->
<div> <!-- foo -->

View File

@ -1,4 +1,3 @@
<p>Foo</p> <div>
<div> <pre><code>&lt;div&gt;
bar </code></pre>
</div>

View File

@ -1,4 +1,3 @@
Foo <div>
<div>
bar <div>
</div>

View File

@ -1,4 +1,4 @@
<p>Foo</p>
<div> <div>
bar bar
</div> </div>
*foo*

View File

@ -1,4 +1,4 @@
Foo
<div> <div>
bar bar
</div> </div>
*foo*

View File

@ -1,3 +1,4 @@
<p>Foo <div>
<a href="bar"> bar
baz</p> </div>
*foo*

View File

@ -1,3 +1,4 @@
Foo <div>
<a href="bar"> bar
baz </div>
*foo*

View File

@ -1,3 +1,3 @@
<div> <p>Foo
<p><em>Emphasized</em> text.</p> <a href="bar">
</div> baz</p>

View File

@ -1,5 +1,3 @@
<div> Foo
<a href="bar">
*Emphasized* text. baz
</div>

View File

@ -1,3 +1,3 @@
<div> <div>
*Emphasized* text. <p><em>Emphasized</em> text.</p>
</div> </div>

View File

@ -1,3 +1,5 @@
<div> <div>
*Emphasized* text. *Emphasized* text.
</div> </div>

View File

@ -1,7 +1,3 @@
<table> <div>
<tr> *Emphasized* text.
<td> </div>
Hi
</td>
</tr>
</table>

View File

@ -1,11 +1,3 @@
<table> <div>
*Emphasized* text.
<tr> </div>
<td>
Hi
</td>
</tr>
</table>

View File

@ -1,8 +1,7 @@
<table> <table>
<tr> <tr>
<pre><code>&lt;td&gt; <td>
Hi Hi
&lt;/td&gt; </td>
</code></pre> </tr>
</tr>
</table> </table>

View File

@ -1,11 +1,11 @@
<table> <table>
<tr> <tr>
<td> <td>
Hi Hi
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -0,0 +1,8 @@
<table>
<tr>
<pre><code>&lt;td&gt;
Hi
&lt;/td&gt;
</code></pre>
</tr>
</table>

View File

@ -0,0 +1,11 @@
<table>
<tr>
<td>
Hi
</td>
</tr>
</table>

View File

@ -0,0 +1 @@
<p><a href="/url" title="title">foo</a></p>

View File

@ -0,0 +1,3 @@
[foo]: /url "title"
[foo]

View File

@ -0,0 +1,3 @@
<p>[foo]: /url 'title</p>
<p>with blank line'</p>
<p>[foo]</p>

View File

@ -0,0 +1,5 @@
[foo]: /url 'title
with blank line'
[foo]

View File

@ -0,0 +1,2 @@
<p>[foo]:</p>
<p>[foo]</p>

View File

@ -0,0 +1,3 @@
[foo]:
[foo]

View File

@ -1 +1 @@
<p><a href="/url">Foo</a></p> <p><a href="url">foo</a></p>

View File

@ -1,3 +1,3 @@
[FOO]: /url [foo]
[Foo] [foo]: url

View File

@ -0,0 +1 @@
<p><a href="/url">Foo</a></p>

View File

@ -1 +1,3 @@
[foo]: /url [FOO]: /url
[Foo]

View File

@ -1 +0,0 @@
<p>[foo]: /url &quot;title&quot; ok</p>

View File

@ -1 +1 @@
[foo]: /url "title" ok [foo]: /url

View File

@ -1 +1 @@
<p>&quot;title&quot; ok</p> <p>[foo]: /url &quot;title&quot; ok</p>

View File

@ -1,2 +1 @@
[foo]: /url [foo]: /url "title" ok
"title" ok

View File

@ -1,3 +1 @@
<pre><code>[foo]: /url &quot;title&quot; <p>&quot;title&quot; ok</p>
</code></pre>
<p>[foo]</p>

View File

@ -1,3 +1,2 @@
[foo]: /url "title" [foo]: /url
"title" ok
[foo]

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