I just noticed that when Pandoc creates syntax highlighting, it also creates an HTML anchor for each code line:
This results in a lot of invisible tab stops. Is there a way to suppress creating those anchors?
I just noticed that when Pandoc creates syntax highlighting, it also creates an HTML anchor for each code line:
This results in a lot of invisible tab stops. Is there a way to suppress creating those anchors?
There is no switch to stop the anchors from being generated, but it is possible to disable them via CSS:
pre > code.sourceCode a {
display: none;
}
This will hide all line anchors, and the tab stops will be gone.