Tags v0.2.7
when we write articles, documents by markdown or rich text editor, we always need to link to some wiki, blog, page or open source works, such like
[fungo](http://github.com/fundipper/fungo)
but goldmark only parse it to a
like this
1<p>
2 <a href="http://github.com/fundipper/fungo">fungo</a>
3</p>
we can't add any attributes, and it's usually bad for SEO
, how to resolve it?
now, we have a solution named goldmark-links, an extension of goldmark.
1[site.markdown.link.source]
2"fungo.dev" = true
3
4[site.markdown.link.attribute]
5rel = "nofollow"
6target = "_blank"
for more info? see the link document.
ADD
-
add goldmark-links
-
improved goldmark-images, goldmark-videos