forked from markedjs/marked
-
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.
Merge pull request markedjs#1013 from Feder1co5oave/fix-backticks2
fix backticks in inline code (replaces markedjs#503, fixes markedjs#312)
- Loading branch information
Showing
3 changed files
with
18 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
<p><code>hi ther `` ok ```</code></p> | ||
|
||
<p><code>`</code></p> | ||
|
||
<p><code>There is a literal backtick (`) here.</code></p> | ||
|
||
<p>A backtick-delimited string in a code span: <code>`foo`</code></p> | ||
|
||
<p>Please don't use any <code><blink></code> tags.</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 |
---|---|---|
@@ -1 +1,9 @@ | ||
````` hi ther `` ok ``` ````` | ||
|
||
`` ` `` | ||
|
||
``There is a literal backtick (`) here.`` | ||
|
||
A backtick-delimited string in a code span: `` `foo` `` | ||
|
||
Please don't use any `<blink>` tags. |