Marketpath Documentation Package
The Marketpath Documentation Package provides a reusable package for easily creating an overview, instructions, and code examples for your own Marketpath CMS packages.
Introduction
Why build your own custom documentation page when you have a beautiful and functional package for that right at your finger tips. This package gives you all (or most) of what you need to provide instructions to users researching or using your custom package.
Example with Code
Showing off code is a piece of cake. Simply add a new section, write some instructions, and then add code examples.
Example code snippet
Show Full
<div class="some-class-here">
<h1>{{ entity.title }}</h1>
<div>
{{ entity.content_html }}
</div>
</div>
Multiple Code Examples
You can include multiple examples within one section.
Example 1
Show Full
<div class="some-class-here">
<h1>{{ entity.title }}</h1>
<div>
{{ entity.content_html }}
</div>
</div>
Example 2
Show Full
<div class="some-class-here">
<h1>{{ entity.title }}</h1>
<div>
{{ entity.content_html }}
</div>
</div>
Example 3
Show Full
<div class="some-class-here">
<h1>{{ entity.title }}</h1>
<div>
{{ entity.content_html }}
</div>
</div>