|
<button class="ui citation button" id="citation-copy-apa" data-text="">
|
|
APA
|
|
</button>
|
|
<button class="ui citation button" id="citation-copy-bibtex" data-text="">
|
|
BibTeX
|
|
</button>
|
|
<!-- the value will be updated by initCitationFileCopyContent, the code below is used to avoid UI flicking -->
|
|
<input id="citation-copy-content" value="" size="1" readonly>
|
|
<button class="ui icon button" id="citation-clipboard-btn" data-tooltip-content="{{ctx.Locale.Tr "copy"}}" data-clipboard-target="#citation-copy-content">
|
|
{{svg "octicon-copy"}}
|
|
</button>
|
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
}
});