mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2026-06-24 09:19:13 +07:00
Add markdown format support (#25)
Co-authored-by: Dawid Dziurla <dawidd0811@gmail.com>
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
<p>escaped word_with_underscores</p>
|
||||
<p>escaped word__with__double underscores</p>
|
||||
<p>escaped word<em>_with_</em>single italic underscore</p>
|
||||
<p>escaped word*with*asterixs</p>
|
||||
<p>escaped word**with**asterixs</p>
|
||||
<p>escaped word<strong>*with*</strong>bold asterixs</p>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
escaped word\_with\_underscores
|
||||
|
||||
escaped word\_\_with\_\_double underscores
|
||||
|
||||
escaped word_\_with\__single italic underscore
|
||||
|
||||
escaped word\*with*asterixs
|
||||
|
||||
escaped word\*\*with\*\*asterixs
|
||||
|
||||
escaped word**\*with\***bold asterixs
|
||||
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
<ul>
|
||||
<li>Item 1</li>
|
||||
<li>Item 2</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>Item 1</li>
|
||||
<li>Item 2</li>
|
||||
</ol>
|
||||
<ul>
|
||||
<li>Item 1</li>
|
||||
<li>Item 2</li>
|
||||
</ul>
|
||||
Generated
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
* Item 1
|
||||
* Item 2
|
||||
|
||||
1. Item 1
|
||||
2. Item 2
|
||||
|
||||
- Item 1
|
||||
- Item 2
|
||||
+1
@@ -0,0 +1 @@
|
||||
<p>2015-10-04</p>
|
||||
+1
@@ -0,0 +1 @@
|
||||
2015-10-04
|
||||
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
<ol>
|
||||
<li><p>Hi, I am a thing</p>
|
||||
<pre><code class="sh language-sh">$ git clone thing.git
|
||||
|
||||
dfgdfg
|
||||
</code></pre></li>
|
||||
<li><p>I am another thing!</p>
|
||||
<pre><code class="sh language-sh">$ git clone other-thing.git
|
||||
|
||||
foobar
|
||||
</code></pre></li>
|
||||
</ol>
|
||||
Generated
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
1. Hi, I am a thing
|
||||
|
||||
```sh
|
||||
|
||||
$ git clone thing.git
|
||||
|
||||
dfgdfg
|
||||
```
|
||||
|
||||
1. I am another thing!
|
||||
|
||||
```sh
|
||||
|
||||
$ git clone other-thing.git
|
||||
|
||||
foobar
|
||||
```
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
<blockquote>
|
||||
<p>a blockquote</p>
|
||||
<h1 id="followedbyanheading">followed by an heading</h1>
|
||||
</blockquote>
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
> a blockquote
|
||||
# followed by an heading
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
<p>Test pre in a list</p>
|
||||
<ul>
|
||||
<li>& <</li>
|
||||
<li><code>& <</code><ul>
|
||||
<li>& <</li>
|
||||
<li><code>& <</code><ul>
|
||||
<li>& <</li>
|
||||
<li><code>& <</code><ul>
|
||||
<li>& <</li>
|
||||
<li><code>& <</code></li></ul></li></ul></li></ul></li>
|
||||
</ul>
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
Test pre in a list
|
||||
|
||||
- & <
|
||||
- `& <`
|
||||
- & <
|
||||
- `& <`
|
||||
- & <
|
||||
- `& <`
|
||||
- & <
|
||||
- `& <`
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
<h2 id="title1">Title 1</h2>
|
||||
<div></div>
|
||||
<h1 id="title2">Title 2</h1>
|
||||
<div>
|
||||
</div>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
Title 1
|
||||
-------
|
||||
|
||||
<div></div>
|
||||
|
||||
|
||||
# Title 2
|
||||
|
||||
|
||||
<div>
|
||||
</div>
|
||||
Generated
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
<pre lang="no-highlight"><code>
|
||||
foo
|
||||
|
||||
```javascript
|
||||
var s = "JavaScript syntax highlighting";
|
||||
alert(s);
|
||||
```
|
||||
|
||||
bar
|
||||
</code></pre>
|
||||
<p>this is a long paragraph</p>
|
||||
<p>this is another long paragraph</p>
|
||||
<pre lang="no-highlight"><code>```javascript
|
||||
var s = "JavaScript syntax highlighting";
|
||||
alert(s);
|
||||
```
|
||||
|
||||
```python
|
||||
s = "Python syntax highlighting"
|
||||
print s
|
||||
```
|
||||
</code></pre>
|
||||
Generated
Vendored
+25
@@ -0,0 +1,25 @@
|
||||
<pre lang="no-highlight"><code>
|
||||
foo
|
||||
|
||||
```javascript
|
||||
var s = "JavaScript syntax highlighting";
|
||||
alert(s);
|
||||
```
|
||||
|
||||
bar
|
||||
</code></pre>
|
||||
|
||||
this is a long paragraph
|
||||
|
||||
this is another long paragraph
|
||||
|
||||
<pre lang="no-highlight"><code>```javascript
|
||||
var s = "JavaScript syntax highlighting";
|
||||
alert(s);
|
||||
```
|
||||
|
||||
```python
|
||||
s = "Python syntax highlighting"
|
||||
print s
|
||||
```
|
||||
</code></pre>
|
||||
Generated
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
<pre lang="no-highlight"><code>
|
||||
```javascript
|
||||
var s = "JavaScript syntax highlighting";
|
||||
alert(s);
|
||||
```
|
||||
|
||||
```python
|
||||
s = "Python syntax highlighting"
|
||||
print s
|
||||
```
|
||||
|
||||
```
|
||||
No language indicated, so no syntax highlighting.
|
||||
But let's throw in a <b>tag</b>.
|
||||
```
|
||||
</code></pre>
|
||||
Generated
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
<pre lang="no-highlight"><code>
|
||||
```javascript
|
||||
var s = "JavaScript syntax highlighting";
|
||||
alert(s);
|
||||
```
|
||||
|
||||
```python
|
||||
s = "Python syntax highlighting"
|
||||
print s
|
||||
```
|
||||
|
||||
```
|
||||
No language indicated, so no syntax highlighting.
|
||||
But let's throw in a <b>tag</b>.
|
||||
```
|
||||
</code></pre>
|
||||
Generated
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
<pre lang="no-highlight"><code>```python
|
||||
var s;
|
||||
```
|
||||
</code></pre>
|
||||
<p>this is a long paragraph</p>
|
||||
<pre lang="no-highlight"><code>
|
||||
```javascript
|
||||
var s;
|
||||
```
|
||||
</code></pre>
|
||||
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
<pre lang="no-highlight"><code>```python
|
||||
var s;
|
||||
```
|
||||
</code></pre>
|
||||
|
||||
this is a long paragraph
|
||||
|
||||
<pre lang="no-highlight"><code>
|
||||
```javascript
|
||||
var s;
|
||||
```
|
||||
</code></pre>
|
||||
Generated
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
<p>this should be <parsed></parsed></p>
|
||||
<p>this should be <parsed></p>
|
||||
<p>this should be <parsed/></p>
|
||||
<p>this should> appear</p>
|
||||
<p>this text <should appear</p>
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
this should be <parsed></parsed>
|
||||
|
||||
this should be <parsed>
|
||||
|
||||
this should be <parsed/>
|
||||
|
||||
this should> appear
|
||||
|
||||
this text <should appear
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
<p><img src="https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png" alt="sd-inline" /> <a href="https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png">sd-ref</a></p>
|
||||
<p>foo</p>
|
||||
<p><a href="https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png">sd-inline</a> <img src="https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="sd-ref" /></p>
|
||||
<p>foo</p>
|
||||
<p><img src="https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="sd-ref" /> <a href="https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png">sd-inline</a></p>
|
||||
<p>foo</p>
|
||||
<p><a href="https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png">sd-ref</a> <img src="https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png" alt="sd-inline" /></p>
|
||||
<p>foo</p>
|
||||
<p><a href="http://www.google.com/"><img src="https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="sd-ref" /></a></p>
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
 [sd-ref][sd-logo]
|
||||
|
||||
foo
|
||||
|
||||
[sd-inline](https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png) ![sd-ref][sd-logo]
|
||||
|
||||
foo
|
||||
|
||||
![sd-ref][sd-logo] [sd-inline](https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png)
|
||||
|
||||
foo
|
||||
|
||||
[sd-ref][sd-logo] 
|
||||
|
||||
foo
|
||||
|
||||
[![sd-ref][sd-logo]](http://www.google.com/)
|
||||
|
||||
[sd-logo]: https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png
|
||||
Generated
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
<p><img src="https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png" alt="sd-inline" /> <img src="https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="sd-ref" /></p>
|
||||
<p>foo</p>
|
||||
<p><img src="https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="sd-ref" /> <img src="https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png" alt="sd-inline" /></p>
|
||||
Generated
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
 ![sd-ref][sd-logo]
|
||||
|
||||
foo
|
||||
|
||||
![sd-ref][sd-logo] 
|
||||
|
||||
[sd-logo]: https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png
|
||||
Generated
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
<p><a href="https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png">sd-inline</a> <a href="https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png">sd-ref</a></p>
|
||||
<p>foo</p>
|
||||
<p><a href="https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png">sd-ref</a> <a href="https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png">sd-inline</a></p>
|
||||
Generated
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
[sd-inline](https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png) [sd-ref][sd-logo]
|
||||
|
||||
foo
|
||||
|
||||
[sd-ref][sd-logo] [sd-inline](https://raw.githubusercontent.com/showdownjs/logo/master/dist/logo.readme.png)
|
||||
|
||||
[sd-logo]: https://www.google.pt/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png
|
||||
Generated
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
<ul>
|
||||
<li><p>list item 1</p>
|
||||
<pre><code><parent>
|
||||
<child>child1</child>
|
||||
<!-- This is a comment -->
|
||||
<child>child2</child>
|
||||
<child>some text <!-- a comment --></child>
|
||||
</parent>
|
||||
</code></pre></li>
|
||||
<li><p>list item 2</p></li>
|
||||
</ul>
|
||||
<pre><code><parent>
|
||||
<child>child1</child>
|
||||
<!-- This is a comment -->
|
||||
<child>child2</child>
|
||||
<child>some text <!-- a comment --></child>
|
||||
</parent>
|
||||
</code></pre>
|
||||
Generated
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
* list item 1
|
||||
|
||||
```
|
||||
<parent>
|
||||
<child>child1</child>
|
||||
<!-- This is a comment -->
|
||||
<child>child2</child>
|
||||
<child>some text <!-- a comment --></child>
|
||||
</parent>
|
||||
```
|
||||
|
||||
* list item 2
|
||||
|
||||
```
|
||||
<parent>
|
||||
<child>child1</child>
|
||||
<!-- This is a comment -->
|
||||
<child>child2</child>
|
||||
<child>some text <!-- a comment --></child>
|
||||
</parent>
|
||||
```
|
||||
Generated
Vendored
+50
@@ -0,0 +1,50 @@
|
||||
<ul>
|
||||
<li>one</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>two</li>
|
||||
</ol>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>two</li>
|
||||
</ol>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>two</li>
|
||||
</ol>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one<ol>
|
||||
<li>two</li></ol></li>
|
||||
</ul>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one</li>
|
||||
<li>two</li>
|
||||
</ul>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one</li>
|
||||
<li>two</li>
|
||||
</ul>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one</li>
|
||||
<li>two</li>
|
||||
</ul>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one</li>
|
||||
<li>two</li>
|
||||
</ul>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one<ul>
|
||||
<li>two</li></ul></li>
|
||||
</ul>
|
||||
Generated
Vendored
+42
@@ -0,0 +1,42 @@
|
||||
* one
|
||||
1. two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
1. two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
1. two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
1. two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
* two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
* two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
* two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
* two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
* two
|
||||
Generated
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
<ul>
|
||||
<li>one long paragraph of
|
||||
text</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>two</li>
|
||||
</ol>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one long paragraph of
|
||||
text</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>two</li>
|
||||
</ol>
|
||||
Generated
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
* one long paragraph of
|
||||
text
|
||||
1. two
|
||||
|
||||
foo
|
||||
|
||||
* one long paragraph of
|
||||
text
|
||||
1. two
|
||||
Generated
Vendored
+47
@@ -0,0 +1,47 @@
|
||||
<ul>
|
||||
<li>one</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>two</li>
|
||||
</ol>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>two</li>
|
||||
</ol>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>two</li>
|
||||
</ol>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>one</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>two</li>
|
||||
</ol>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>uli one</li>
|
||||
<li>uli two</li>
|
||||
</ul>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>uli one</li>
|
||||
<li>uli two</li>
|
||||
</ul>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>uli one</li>
|
||||
<li>uli two</li>
|
||||
</ul>
|
||||
<p>foo</p>
|
||||
<ul>
|
||||
<li>uli one</li>
|
||||
<li>uli two</li>
|
||||
</ul>
|
||||
Generated
Vendored
+37
@@ -0,0 +1,37 @@
|
||||
* one
|
||||
1. two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
1. two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
1. two
|
||||
|
||||
foo
|
||||
|
||||
* one
|
||||
1. two
|
||||
|
||||
foo
|
||||
|
||||
* uli one
|
||||
* uli two
|
||||
|
||||
foo
|
||||
|
||||
* uli one
|
||||
* uli two
|
||||
|
||||
foo
|
||||
|
||||
* uli one
|
||||
* uli two
|
||||
|
||||
foo
|
||||
|
||||
* uli one
|
||||
* uli two
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
<ul>
|
||||
<li>- - a</li>
|
||||
</ul>
|
||||
<p>a</p>
|
||||
<ul>
|
||||
<li>- * - - + a</li>
|
||||
</ul>
|
||||
<p>a</p>
|
||||
<ol>
|
||||
<li>2. 3. 4. 5.</li>
|
||||
</ol>
|
||||
<p>a</p>
|
||||
<ol>
|
||||
<li>2. 3. 4. 5. a</li>
|
||||
</ol>
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
- - - a
|
||||
|
||||
a
|
||||
|
||||
+ - * - - + a
|
||||
|
||||
a
|
||||
|
||||
1. 2. 3. 4. 5.
|
||||
|
||||
a
|
||||
|
||||
1. 2. 3. 4. 5. a
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
<ul>
|
||||
<li><p>- - a</p></li>
|
||||
<li><p>- * - - + a</p></li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li><p>2. 3. 4. 5.</p></li>
|
||||
<li><p>2. 3. 4. 5. a</p></li>
|
||||
</ol>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
- - - a
|
||||
|
||||
+ - * - - + a
|
||||
|
||||
1. 2. 3. 4. 5.
|
||||
|
||||
1. 2. 3. 4. 5. a
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
<ul>
|
||||
<li>-
|
||||
a</li>
|
||||
</ul>
|
||||
<p>fooo</p>
|
||||
<ul>
|
||||
<li><p>- - aaaaa</p>
|
||||
<p>bbbbb</p></li>
|
||||
</ul>
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
- -
|
||||
a
|
||||
|
||||
|
||||
fooo
|
||||
|
||||
|
||||
- - - aaaaa
|
||||
|
||||
bbbbb
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
<ul>
|
||||
<li>- - - -- - - - - - - -- - - - - - - - - - - - - - - - - - - - abcd</li>
|
||||
</ul>
|
||||
+1
@@ -0,0 +1 @@
|
||||
- - - - -- - - - - - - -- - - - - - - - - - - - - - - - - - - - abcd
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
<hr />
|
||||
<hr />
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
---
|
||||
|
||||
- - -
|
||||
Generated
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
<p>foo *bar *baz</p>
|
||||
<p>foo **bar **baz</p>
|
||||
<p>foo ***bar ***baz</p>
|
||||
<p>foo _bar _baz</p>
|
||||
<p>foo __bar __baz</p>
|
||||
<p>foo ___bar ___baz</p>
|
||||
<p>foo *bar *baz *bazinga</p>
|
||||
<p>foo **bar **baz **bazinga</p>
|
||||
<p>foo ***bar ***baz ***bazinga</p>
|
||||
<p>foo _bar _baz __bazinga</p>
|
||||
<p>foo __bar __baz __bazinga</p>
|
||||
<p>foo ___bar ___baz ___bazinga</p>
|
||||
<p><em>f</em></p>
|
||||
<p><strong>f</strong></p>
|
||||
<p><em>f</em></p>
|
||||
<p><strong>f</strong></p>
|
||||
<p>foo **bar **baz <strong>bazinga bla</strong></p>
|
||||
<p>foo <strong>bar **baz **bazinga bla</strong></p>
|
||||
<p>foo <strong>**bar **baz **bazinga bla</strong></p>
|
||||
<p>this is <strong><a href="//google.com/foo**bar">imbued link with strong</a></strong></p>
|
||||
<p>this is <strong><a href="google.com/foo__bar">imbued link with strong</a></strong></p>
|
||||
Generated
Vendored
+41
@@ -0,0 +1,41 @@
|
||||
foo *bar *baz
|
||||
|
||||
foo **bar **baz
|
||||
|
||||
foo ***bar ***baz
|
||||
|
||||
foo _bar _baz
|
||||
|
||||
foo __bar __baz
|
||||
|
||||
foo ___bar ___baz
|
||||
|
||||
foo *bar *baz *bazinga
|
||||
|
||||
foo **bar **baz **bazinga
|
||||
|
||||
foo ***bar ***baz ***bazinga
|
||||
|
||||
foo _bar _baz __bazinga
|
||||
|
||||
foo __bar __baz __bazinga
|
||||
|
||||
foo ___bar ___baz ___bazinga
|
||||
|
||||
*f*
|
||||
|
||||
**f**
|
||||
|
||||
_f_
|
||||
|
||||
__f__
|
||||
|
||||
foo **bar **baz **bazinga bla**
|
||||
|
||||
foo __bar **baz **bazinga bla__
|
||||
|
||||
foo __**bar **baz **bazinga bla__
|
||||
|
||||
this is **<a href="//google.com/foo**bar">imbued link with strong</a>**
|
||||
|
||||
this is __<a href="google.com/foo__bar">imbued link with strong</a>__
|
||||
+1
@@ -0,0 +1 @@
|
||||
<p>this |</p>
|
||||
+1
@@ -0,0 +1 @@
|
||||
this \|
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
<p>This is an <img src="./image/cat(1).png" alt="image" /></p>
|
||||
<p>This is another <img src="./image/cat(1).png" alt="image" /></p>
|
||||
<p><a href="http://example.com"><img src="./image/cat(1).png" alt="image link" /></a></p>
|
||||
<p><a href="http://example.com"><img src="./image/cat1).png" alt="image link" /></a></p>
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
This is an ![image][]
|
||||
|
||||
[image]: ./image/cat(1).png
|
||||
|
||||
This is another .png)
|
||||
|
||||
[.png)](http://example.com)
|
||||
|
||||
[.png>)](http://example.com)
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
<p>This is a <a href="https://en.wikipedia.org/wiki/Textile_(markup_language)" title="Textile">link</a>.</p>
|
||||
<p>This is another <a href="https://en.wikipedia.org/wiki/Textile_(markup_language)" title="Textile">link</a>.</p>
|
||||
<p><a href="./image/cat1).png" title="title">link</a></p>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
This is a [link][].
|
||||
|
||||
[link]: https://en.wikipedia.org/wiki/Textile_(markup_language) "Textile"
|
||||
|
||||
This is another [link](https://en.wikipedia.org/wiki/Textile_(markup_language) "Textile").
|
||||
|
||||
[link](<./image/cat1).png> "title")
|
||||
+1
@@ -0,0 +1 @@
|
||||
<p><p>malformed<p></p>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<p>malformed<p>
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
<ul>
|
||||
<li><p><strong>Customer</strong> – Opens the Customer List. Refer to the document “Customer Management”.</p>
|
||||
<ul>
|
||||
<li>Customer List</li>
|
||||
<li>New Customer</li>
|
||||
<li>Customer Prices</li>
|
||||
<li>Appointments</li></ul></li>
|
||||
<li><p><strong>Designer</strong> - Opens the Designer List. Refer to the document “Designer Commissions”.</p>
|
||||
<ul>
|
||||
<li>Designer List</li>
|
||||
<li>New Designer</li>
|
||||
<li>Designer Payment List</li>
|
||||
<li>New Designer Payment</li></ul></li>
|
||||
</ul>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
- **Customer** – Opens the Customer List. Refer to the document “Customer Management”.
|
||||
- Customer List
|
||||
- New Customer
|
||||
- Customer Prices
|
||||
- Appointments
|
||||
|
||||
- **Designer** - Opens the Designer List. Refer to the document “Designer Commissions”.
|
||||
- Designer List
|
||||
- New Designer
|
||||
- Designer Payment List
|
||||
- New Designer Payment
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
<p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAIAAAA7ljmRAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYSURBVBhXYwCC/2AAZYEoOAMs8Z+BgQEAXdcR7/Q1gssAAAAASUVORK5CYII=" alt="foo" /></p>
|
||||
<p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAIAAAA7ljmRAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYSURBVBhXYwCC/2AAZYEoOAMs8Z+BgQEAXdcR7/Q1gssAAAAASUVORK5CYII=" alt="bar" /></p>
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||

|
||||
|
||||
![bar][]
|
||||
|
||||
|
||||
[bar]:
|
||||
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAIAAAA7ljmRAAAAAXNSR0IArs4c6QAAAARnQU1BAA
|
||||
Cxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYSURBVBhXYwCC/2AAZYEoOAMs8Z+BgQEAXdcR7/Q1gssAAAAASUVORK5CYII=
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
<h2 id="headeridinh2">header id in h2</h2>
|
||||
<h3 id="headeridinh3">header id in h3</h3>
|
||||
<h4 id="headeridinh4">header id in h4</h4>
|
||||
<h5 id="headeridinh5">header id in h5</h5>
|
||||
<h6 id="headeridinh6">header id in h6</h6>
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
## header id in h2
|
||||
|
||||
### header id in h3
|
||||
|
||||
#### header id in h4
|
||||
|
||||
##### header id in h5
|
||||
|
||||
###### header id in h6
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
<pre><code class="javascript language-javascript">var test = test;
|
||||
function foo() {
|
||||
return 'bar';
|
||||
}
|
||||
</code></pre>
|
||||
<pre><code class="javascript language-javascript">var test = test;
|
||||
function foo() {
|
||||
return 'bar';
|
||||
}
|
||||
</code></pre>
|
||||
<pre><code class="javascript language-javascript">var test = test;
|
||||
function foo() {
|
||||
return 'bar';
|
||||
}
|
||||
</code></pre>
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
```javascript
|
||||
var test = test;
|
||||
function foo() {
|
||||
return 'bar';
|
||||
}
|
||||
```
|
||||
|
||||
```javascript
|
||||
var test = test;
|
||||
function foo() {
|
||||
return 'bar';
|
||||
}
|
||||
```
|
||||
|
||||
```javascript
|
||||
var test = test;
|
||||
function foo() {
|
||||
return 'bar';
|
||||
}
|
||||
```
|
||||
+1
@@ -0,0 +1 @@
|
||||
<p>[<img src="http://example.com/foo.png" alt="the-image" />]</p>
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
[![the-image]]
|
||||
|
||||
[the-image]: http://example.com/foo.png
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
<p>plain text link http://test.com/this_has/one.html with underscores</p>
|
||||
<p>legit·word_with·1·underscore</p>
|
||||
<p>a word<em>with</em>2underscores (gets em)</p>
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
plain text link http://test.com/this_has/one.html with underscores
|
||||
|
||||
legit·word_with·1·underscore
|
||||
|
||||
a word_with_2underscores (gets em)
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
<p>this is a underscore_test <img src="http://myserver.com/my_kitty.jpg" alt="my cat" /></p>
|
||||
<p>another <img src="http://myserver.com/my_kitty.jpg" alt="my cat" /> underscore_test bla</p>
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
this is a underscore_test 
|
||||
|
||||
another  underscore_test bla
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
<p><a href="./images(1)/cat(1).png">link</a></p>
|
||||
<p><a href="./images(1)/cat(1).png" title="title">link</a></p>
|
||||
<p><img src="./images(1)/cat(1).png" alt="image" /></p>
|
||||
<p><img src="./images(1)/cat(1).png" alt="image" title="title" /></p>
|
||||
<p><img src="./images(1)/cat(1).png" alt="image" title="title" width="800" height="600" /></p>
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
[link](<./images(1)/cat(1).png>)
|
||||
|
||||
[link](<./images(1)/cat(1).png> "title")
|
||||
|
||||
/cat(1).png>)
|
||||
|
||||
/cat(1).png> "title")
|
||||
|
||||
/cat(1).png> =800x600 "title")
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
<p><img src="images(1)/cat(1).png" alt="my cat" /></p>
|
||||
<p><a href="images(1)/cat(1).png">my cat</a></p>
|
||||
<p><img src="some.com/crazy url with spaces" alt="foo" /></p>
|
||||
<p><img src="some.com/crazy url with spaces" alt="foo" title="title" /></p>
|
||||
<p><a href="some.com/crazy url with spaces">foo</a></p>
|
||||
<p><a href="some.com/crazy url with spaces" title="title">foo</a></p>
|
||||
<p><img src="" alt="empty" /></p>
|
||||
<p><a href="">empty</a></p>
|
||||
<p><img src="" alt="empty" title="title" /></p>
|
||||
<p><a href="" title="title">empty</a></p>
|
||||
<p><img src="" alt="empty" /></p>
|
||||
<p><a href="">empty</a></p>
|
||||
<p><img src="" alt="empty" title="title" /></p>
|
||||
<p><a href="" title="title">empty</a></p>
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
/cat(1).png>)
|
||||
|
||||
[my cat](<images(1)/cat(1).png>)
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
[foo](<some.com/crazy url with spaces>)
|
||||
|
||||
[foo](<some.com/crazy url with spaces> "title")
|
||||
|
||||

|
||||
|
||||
[empty](<>)
|
||||
|
||||

|
||||
|
||||
[empty](<> "title")
|
||||
|
||||

|
||||
|
||||
[empty](< >)
|
||||
|
||||

|
||||
|
||||
[empty](< > "title")
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
text
|
||||
</div>
|
||||
<div>
|
||||
text
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
text
|
||||
</div>
|
||||
<div>
|
||||
text
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
<p>hmm</p>
|
||||
<pre>
|
||||
this is `a\_test` and this\_too and finally_this_is
|
||||
</pre>
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
hmm
|
||||
<pre>
|
||||
this is `a\_test` and this\_too and finally_this_is
|
||||
</pre>
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
<div><div>a</div><div>b</div></div>
|
||||
<pre><code><div>**foobar**</div>
|
||||
</code></pre>
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
<div><div>a</div><div>b</div></div>
|
||||
|
||||
<div>**foobar**</div>
|
||||
Reference in New Issue
Block a user