-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into no-p-in-table
- Loading branch information
Showing
15 changed files
with
173 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,5 +24,15 @@ _emphasis_? | |
|
||
_emphasis_! | ||
|
||
(_emphasis_) | ||
|
||
[**bold**} | ||
|
||
(~~strike~~] | ||
|
||
* **bold** | ||
|
||
~ ~~strike~~ | ||
|
||
_em1_ _em2_ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<p> <em><strong>ib</strong></em></p> | ||
|
||
<p>.<em><strong>ib</strong></em></p> | ||
|
||
<p> <strong><em>bi</em></strong></p> | ||
|
||
<p>.<strong><em>bi</em></strong></p> | ||
|
||
<p> <em><strike>is</strike></em></p> | ||
|
||
<p>.<em><strike>is</strike></em></p> | ||
|
||
<p> <em><strike>si</strike></em></p> | ||
|
||
<p>.<em><strike>si</strike></em></p> | ||
|
||
<p> <strong><strike>bs</strike></strong></p> | ||
|
||
<p>.<strong><strike>bs</strike></strong></p> | ||
|
||
<p> <strike><strong>sb</strong></strike></p> | ||
|
||
<p>.<strike><strong>sb</strong></strike></p> | ||
|
||
<p> <strike><strong><em>sbi</em></strong></strike></p> | ||
|
||
<p>.<strike><strong><em>sbi</em></strong></strike></p> | ||
|
||
<p> <strong><em><strike>bis</strike></em></strong></p> | ||
|
||
<p>.<strong><em><strike>bis</strike></em></strong></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
_**ib**_ | ||
|
||
. _**ib**_ | ||
|
||
**_bi_** | ||
|
||
. **_bi_** | ||
|
||
_~~is~~_ | ||
|
||
. _~~is~~_ | ||
|
||
_~~si~~_ | ||
|
||
. _~~si~~_ | ||
|
||
**~~bs~~** | ||
|
||
. **~~bs~~** | ||
|
||
~~**sb**~~ | ||
|
||
. ~~**sb**~~ | ||
|
||
~~**_sbi_**~~ | ||
|
||
. ~~**_sbi_**~~ | ||
|
||
**_~~bis~~_** | ||
|
||
. **_~~bis~~_** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!DOCTYPE html> <html> | ||
<head lang="en"> <meta charset="UTF-8"> <title></title> </head> | ||
<body> <h1>This is a test document</h1> With some text, <code>code</code>, <b>bolds</b> and <i>italics</i>. <h2>This is second header</h2> <p style="display: none">Displaynone text</p> | ||
<table> | ||
<tr> <th>Header 1</th> <th>Header 2</th> <th>Header 3</th> </tr> | ||
<tr> <td>Content 1</td> <td>2</td> <td><img src="http://lorempixel.com/200/200" alt="200"/> Image!</td> </tr> | ||
<tr> <td>Content 1 longer</td> <td>Content 2</td> <td>Here is some really long text that will wrap to the next line. Because it's so long.</td> </tr> | ||
<tr> <td>Content </td> <td>Content 2</td> <td>blah</td> </tr> | ||
<tr> <td>t </td> <td>Content 2</td> <td>blah blah blah</td> </tr> | ||
</table> | ||
|
||
</body> </html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This is a test document | ||
|
||
With some text, `code`, **bolds** and _italics_. | ||
|
||
## This is second header | ||
|
||
Displaynone text | ||
|
||
Header 1 | Header 2 | Header 3 | ||
---|---|--- | ||
Content 1 | 2 | ![200](http://lorempixel.com/200/200) Image! | ||
Content 1 longer | Content 2 | Here is some really long text that will wrap to | ||
the next line. Because it's so long. | ||
Content | Content 2 | blah | ||
t | Content 2 | blah blah blah | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters