-
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 pull request #456 from Feder1co5oave/clean-segments
IDs of headings with inline tokens (link, em, bold...)
- Loading branch information
Showing
4 changed files
with
59 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<h3 id="heading-with-a-link">Heading with a <a href="http://github.com/">link</a></h3> | ||
|
||
<h3 id="heading-with-some-italic-text">Heading with some <em>italic text</em></h3> | ||
|
||
<h3 id="or-some-strong">Or some <strong>strong</strong></h3> | ||
|
||
<p>(which doesn't really make any difference, here)</p> | ||
|
||
<h3 id="or-even-code">Or even <code>code</code></h3> | ||
|
||
<h3 id="what-about-strikethrough">What about <del>strikethrough</del></h3> | ||
|
||
<h2 id="and-a-ref-link">And a ref <a href="/some/url" title="link to nowhere">link</a></h2> |
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 @@ | ||
### Heading with a [link](http://github.com/) | ||
|
||
### Heading with some _italic text_ | ||
|
||
### Or some **strong** | ||
(which doesn't really make any difference, here) | ||
|
||
### Or even `code` | ||
|
||
### What about ~~strikethrough~~ | ||
|
||
## And a ref [link][destination] | ||
|
||
[destination]: /some/url "link to nowhere" |
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