forked from showdownjs/showdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
148 additions
and
18 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
10 changes: 10 additions & 0 deletions
10
...numerated-code-blocks-are-partially-escaped-when-including-empy-lines-between-code-2.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,10 @@ | ||
<pre><code>public static void main(String[] args) { | ||
|
||
for (int i = 0; i < 10 && true; i++) { | ||
|
||
System.out.println("Hello World"); | ||
} | ||
|
||
// stuff here is affected as well <>&&% | ||
} | ||
</code></pre> |
11 changes: 11 additions & 0 deletions
11
...d-code-blocks-are-partially-escaped-when-including-empy-lines-between-code-2.md
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,11 @@ | ||
``` | ||
public static void main(String[] args) { | ||
for (int i = 0; i < 10 && true; i++) { | ||
System.out.println("Hello World"); | ||
} | ||
// stuff here is affected as well <>&&% | ||
} | ||
``` |
13 changes: 13 additions & 0 deletions
13
....enumerated-code-blocks-are-partially-escaped-when-including-empy-lines-between-code.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,13 @@ | ||
<ol> | ||
<li><p>Code block as part of list</p> | ||
<pre><code>public static void main(String[] args) { | ||
|
||
for (int i = 0; i < 10 && true; i++) { | ||
|
||
System.out.println("Hello World"); | ||
} | ||
|
||
// stuff here is affected as well <>&&% | ||
} | ||
</code></pre></li> | ||
</ol> |
13 changes: 13 additions & 0 deletions
13
...ted-code-blocks-are-partially-escaped-when-including-empy-lines-between-code.md
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,13 @@ | ||
1. Code block as part of list | ||
|
||
``` | ||
public static void main(String[] args) { | ||
for (int i = 0; i < 10 && true; i++) { | ||
System.out.println("Hello World"); | ||
} | ||
// stuff here is affected as well <>&&% | ||
} | ||
``` |