Files
sqlpage--sqlpage/sqlpage/templates/code.handlebars
T
lovasoa 1140734ad5 Many improvements in the official website and the documentation.
Most notably, the documentation now has syntax highlighting on code blocks.
2023-10-18 00:30:20 +02:00

13 lines
357 B
Handlebars

<div class="code-component my-1">
{{#each_row}}
<h2>{{title}}</h2>
<p>{{description}}</p>
{{#if description_md}}
{{{markdown description_md}}}
{{/if}}
<pre class="mb-0"><code
{{#if language}}class="language-{{language}}"{{/if}}
>{{contents}}</code></pre>
{{/each_row}}
</div>