|
{{if .dependencies}}
|
|
<p><strong>{{.title}}</strong></p>
|
|
<table class="ui single line very basic table">
|
|
<thead>
|
|
<tr>
|
|
<th class="eleven wide">{{ctx.Locale.Tr "packages.dependency.id"}}</th>
|
|
<th class="five wide">{{ctx.Locale.Tr "packages.dependency.version"}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range $dependency, $version := .dependencies}}
|
|
<tr>
|
|
<td>{{$dependency}}</td>
|
|
<td>{{$version}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
{{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
}
});