|
{{if .item.Attributes.label}}
|
|
<h3>{{.item.Attributes.label}}{{if .item.Validations.required}}<label class="required"></label>{{end}}</h3>
|
|
{{end}}
|
|
{{if .item.Attributes.description}}
|
|
<span class="help">{{RenderMarkdownToHtml .Context .item.Attributes.description}}</span>
|
|
{{end}}
|
marked.setOptions({
highlight: function (code, lang) {
// Use highlight.js to highlight the code
const language = hljs.getLanguage(lang) ? lang : 'plaintext'; // Fallback to 'plaintext' if no language is found
return hljs.highlight(language, code).value; // Return the highlighted code
}
});