jekyll markdown internal links

JuanPablo picture JuanPablo · Jan 7, 2011 · Viewed 59.3k times · Source

Jekyll uses Markdown-formatted links, but how can I link to internal content?

[[link]] 

Answer

Brett Hardin picture Brett Hardin · Feb 8, 2012

You can now post internal links by using the following:

[Some Link]({% post_url 2010-07-21-name-of-post %})

This is also referenced in the Jekyll Documentation.

https://github.com/mojombo/jekyll/pull/369