Why? Because you should be able to:
{% include %}
tags with markdown.If you're using bundler add this gem to your site's Gemfile in the :jekyll_plugins
group:
group :jekyll_plugins do
gem 'octopress-markdown-tag'
end
Then install the gem with Bundler
$ bundle
Or install it manually:
$ gem install octopress-markdown-tag
Then add the gem to your Jekyll configuration.
gems:
- octopress-markdown-tag
Drop some markdown in your html, and it will render nicely
<!-- Some random HTML file-->
<div>
{% markdown %}
## That's right folks!
Markdown in your `HTML`!
- Any template
- Any time
{% endmarkdown %}
</div>
Correctly render markdown files which are included in an HTML page.
<!-- Another random HTML file-->
<div>
{% markdown %}{% include coolcat.md %}{% endmarkdown %}
</div>
That's pretty much it. Have fun!
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)