-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add Copy Button #911
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add Copy Button #911
Conversation
Click on the button to copy the content of the code block
…into essesoul-dev
Nice, thank you. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'm not a reviewer, but i think this is not elegant
- i think it would be better to use
js.Build
preprocessing
{{-
$defines := dict
"css_url" (resources.Get "js/clipboard.css").Permalink
-}}
{{- with resources.Get "js/clipboard.ts" (dict "defines" $defines) | js.Build | minify | fingerprint -}}
<script src="{{ .Permalink }}"></script>
{{- end -}}
- use
layouts/_default/_markup/render-codeblock.html
hook, set page variable
{{- .Page.Store.Set "hasCodeblock" true -}}
see https://gohugo.io/render-hooks/code-blocks/
- use javascript dynamic loading stylesheet
declare const css_url: string
const stylesheet = document.createElement("link")
stylesheet.rel = "stylesheet"
stylesheet.href = css_url
document.head.appendChild(stylesheet)
I was just about to research how to add a code copy button when I found this --- is this still being considered? |
Prerequisites
Put an
x
into the box(es) that apply:Description
Click on the button to copy the content of the code block
One-click copying of the content of a block of code is achieved by creating the files
static/css/clipboard.css
andstatic/js/clipboard.js
Users can now quickly copy the contents of a block by clicking the button in the upper right corner of the block.
Checklist
Put an
x
into the box(es) that apply:General
#<ISSUE_NO>
if applicableResources
make release
to regenerate all CSS filesContributors
CONTRIBUTORS.md
if you aren't on it already