|
{{$avatarLink := (.RelAvatarLink ctx)}}
|
|
{{if $avatarLink}}
|
|
<img class="ui avatar tw-align-middle" src="{{$avatarLink}}" width="24" height="24" alt="{{.FullName}}">
|
|
{{else if $.IsMirror}}
|
|
{{svg "octicon-mirror" 24}}
|
|
{{else if $.IsFork}}
|
|
{{svg "octicon-repo-forked" 24}}
|
|
{{else}}
|
|
{{svg "octicon-repo" 24}}
|
|
{{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
}
});