simple exercise that shows how it is possible (and easy) to insert a part of templating into markdown.
In this test we use ** Handlebars.js **, an extension to the Mustache templating language.
see test.js
git clone https://github.com/rondinif/LAB01-MARKDOWN-TEMPLATE
cd LAB01-MARKDOWN-TEMPLATE
npm i
npm test
<h1>primo capitolo</h1>
<p>Questa semplicissima demo mostra come utilizzare <strong>handlebars</strong> insieme a <strong>markdown</strong>, ed ora possiamo dire:</p>
<p>Handlebars <strong>rocks!</strong> in markdown!</p>
<p>a piece of code:</p>
<pre><code>const doesWhat = 'rocks!';
</code></pre>
<h1>secondo capitolo</h1>
<p>se abbiamo un <a href="https://developer.mozilla.org/it/docs/Web/JavaScript/Reference/Global_Objects/Array">Array</a> possiamo
dinaminamicamente creare un elenco puntato come questo:</p>
<ul>
<li>Yehuda Katz</li>
<li>Alan Johnson</li>
<li>Charles Jolley</li>
</ul>
Questa semplicissima demo mostra come utilizzare handlebars insieme a markdown, ed ora possiamo dire:
Handlebars rocks! in markdown!
a piece of code:
const doesWhat = 'rocks!';
se abbiamo un Array possiamo dinaminamicamente creare un elenco puntato come questo:
- Yehuda Katz
- Alan Johnson
- Charles Jolley