Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nested anchor #46

Merged
merged 2 commits into from
Dec 23, 2018
Merged

Nested anchor #46

merged 2 commits into from
Dec 23, 2018

Conversation

watagashi
Copy link
Contributor

input

# [test](http://google.com)
## text [test](http://google.com)
## **text**
## *text*
## ~~text~~

output

<ul class="markdownIt-TOC">
<li><a href="#test">test</a>
<ul>
<li>[text <a href="http://google.com">test</a>](#text-test)</li>
<li><a href="#text"><strong>text</strong></a></li>
<li><a href="#text-2"><em>text</em></a></li>
<li><a href="#text-3"><s>text</s></a></li>
</ul>

expected output

<ul class="markdownIt-TOC">
<li><a href="#test">test</a>
<ul>
<li><a href="#text-test">text test</a></li>
<li><a href="#text"><strong>text</strong></a></li>
<li><a href="#text-2"><em>text</em></a></li>
<li><a href="#text-3"><s>text</s></a></li>
</ul>

@coveralls
Copy link

coveralls commented May 30, 2018

Coverage Status

Coverage remained the same at 100.0% when pulling 6c2841b on watagashi:nested-anchor into b1b8855 on medfreeman:master.

1 similar comment
@coveralls
Copy link

Coverage Status

Coverage remained the same at 100.0% when pulling 6c2841b on watagashi:nested-anchor into b1b8855 on medfreeman:master.

@medfreeman medfreeman merged commit 6c2841b into medfreeman:master Dec 23, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants