Ask HN: Is there a static site generator that supports [[wikilinks]]?
3 comments
With Eleventy, you can specify a markdown parser which supports wikilinks. https://github.com/kwvanderlinde/markdown-it-wikilinks
Would this use the [[]] linking or the standard markdown syntax? See example below. Edit: Also, what benefit does linking give?
[link text](/another-page)
vs
[[another-page]]
[link text](/another-page)
vs
[[another-page]]
[[]], the most obvious benefit would be, with the growing trend of the note-taking app adopting [[]] style backlinks, people can easily convert their notes into blog posts to build a static site.
Thanks!