|
<div class="ui labels list">
|
|
<span class="labels-list">
|
|
<span class="no-select {{if .root.HasSelectedLabel}}tw-hidden{{end}}">{{ctx.Locale.Tr "repo.issues.new.no_label"}}</span>
|
|
{{range .root.Labels}}
|
|
{{template "repo/issue/labels/label" dict "root" $.root "label" .}}
|
|
{{end}}
|
|
{{range .root.OrgLabels}}
|
|
{{template "repo/issue/labels/label" dict "root" $.root "label" .}}
|
|
{{end}}
|
|
</span>
|
|
</div>
|
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
}
});