fniessen / org-html-themes

Transform your Org mode files into stunning HTML documents in minutes with our Org mode HTML theme. Elevate your productivity and impress your readers! #orgmode #html #theme #productivity #design
GNU General Public License v3.0
2.22k stars 435 forks source link

Make code block line numbers none user selectable. #165

Open TurboHolmes opened 1 year ago

TurboHolmes commented 1 year ago

Highlighting code blocks, with line numbers, for copying code results in copying line numbers along with the src code. In bigblow theme.

image

This issue can be resolved by adding a simple fix in CSS.

.linenr {
    user-select: none;
}

image

TurboHolmes commented 1 year ago

Should I submit an PR?