mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
9f8e778918
Add feature to easily copy CITATION.cff content in APA and BibTex format.
11 lines
579 B
Handlebars
11 lines
579 B
Handlebars
<button class="ui basic citation button" id="citation-copy-apa" data-text="">
|
|
APA
|
|
</button>
|
|
<button class="ui basic 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 basic icon button tooltip" id="citation-clipboard-btn" data-content="{{.locale.Tr "copy"}}" data-clipboard-text="" data-clipboard-target="#citation-copy-content">
|
|
{{svg "octicon-copy"}}
|
|
</button>
|