-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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 render-inline-html
- Loading branch information
Showing
11 changed files
with
58 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* | ||
!docs | ||
!docs/** |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<p>A paragraph</p> | ||
<pre><code class="language-A">Here is code in | ||
backtick fences</code></pre> | ||
<p>B paragraph</p> | ||
<pre><code class="language-B">Here is code in | ||
tilde fences</code></pre> | ||
<p>C paragraph</p> | ||
<pre><code class="language-`C~">Alternative | ||
tilde fences</code></pre> | ||
<p>D paragraph ```~D` Invalid use of backtick fences</p> | ||
<pre><code> | ||
This will be read as | ||
part of a codeblock | ||
that ends with the file</code></pre> |
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,27 @@ | ||
A paragraph | ||
```A | ||
Here is code in | ||
backtick fences | ||
``` | ||
|
||
B paragraph | ||
~~~B | ||
Here is code in | ||
tilde fences | ||
~~~ | ||
|
||
C paragraph | ||
~~~`C~ | ||
Alternative | ||
tilde fences | ||
~~~ | ||
|
||
D paragraph | ||
```~D` | ||
Invalid use of | ||
backtick fences | ||
``` | ||
This will be read as | ||
part of a codeblock | ||
that ends with the file |