gongzhitaao / orgcss

Simple and clean CSS for Org-exported HTML
https://gongzhitaao.org/orgcss/
Other
425 stars 76 forks source link

add copy button for code block #25

Open Zilong-Li opened 3 years ago

Zilong-Li commented 3 years ago

Hi @gongzhitaao

Thanks for your great work on this.

I wonder if you can add a copy button for code block so that people can copy the code snippets quickly, especially for long and large blocks.

gongzhitaao commented 3 years ago

Hey Zilong,

Good suggestion, let me see how easy it will be for a pure css solution.

Zilong-Li commented 3 years ago

Hi,

I don't think there is a good solution to copy text to clipboard with one click button for pure css, although I am not an expert on css. Alternatively, maybe we can make the code block copiable when moving mouse to the block using hover feature so that people can Ctrl/Cmd+C to copy. check this https://stackoverflow.com/questions/44418687/making-text-selectable-on-hover-with-css. But this is not good solution for mobile device. I think using js is inevitable if you want to make it work across all devices.