wultra / docucheck

Tool for validating Wultra's documentation
Apache License 2.0
2 stars 2 forks source link

Add new macro for embedding existing markdown file #67

Closed petrdvorak closed 2 months ago

petrdvorak commented 2 months ago

We would like to translate:

<!-- include Installation.md "Installation Manual" -->

... into:

<h1>Installation Manual</h1> {% capture cpt %}{% include_relative Installation.md %}{% endcapture %} {{ cpt  | split: \"---\" | last }}

The macro will allow us to build a one-page documentation faster.