Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
591 B
31 lines
591 B
linkify
|
|
.
|
|
url http://www.youtube.com/watch?v=5Jt5GEr4AYg.
|
|
.
|
|
<p>url <a href="http://www.youtube.com/watch?v=5Jt5GEr4AYg">http://www.youtube.com/watch?v=5Jt5GEr4AYg</a>.</p>
|
|
.
|
|
|
|
|
|
don't touch text in links
|
|
.
|
|
[https://example.com](https://example.com)
|
|
.
|
|
<p><a href="https://example.com">https://example.com</a></p>
|
|
.
|
|
|
|
|
|
don't touch text in autolinks
|
|
.
|
|
<https://example.com>
|
|
.
|
|
<p><a href="https://example.com">https://example.com</a></p>
|
|
.
|
|
|
|
|
|
don't touch text in html <a> tags
|
|
.
|
|
<a href="https://example.com">https://example.com</a>
|
|
.
|
|
<p><a href="https://example.com">https://example.com</a></p>
|
|
.
|
|
|
|
|