It’s convenient to borrow code from posts on a website which has enabled “copy-code” buttons or links, but it can be a hassle to make that work with complete convenience in the Prism.js-based syntax highlighting you typically find in an Eleventy-powered site. Fortunately, there’s a workaround for that.
Last year, I added that sort of code to the two repos I use to run this site, depending on whether I’m running Eleventy or Hugo at any given time. However, I soon learned there’s an annoying difference between how it works in each one, due to how each of these platforms usually performs syntax highlighting.
For each, a code block is wrapped inside a pre
/code
construct, but the Chroma tool used by Hugo also surrounds that construct with a div
. As a result, you can assign relative positioning to that div
and, then, the “copy-code” button’s absolute positioning keeps it in place within the div
, even when you perform horizontal scrolling on a code block with extra-wide lines; e.g.:
<p class="fake-class-name another-class-name">This is a purposefully long line of HTML, allowing you to see what happens with a code block that requires horizontal scrolling.</p>
<p class="YA-class-name">This is a shorter line.</p>
On the other hand, since Prism.js doesn’t wrap the pre
/code
construct within a div
, the button moves with any horizontal scrolling of a Prism.js-highlighted code block.
I have requested that the standard Eleventy plugin for syntax highlighting, which uses Prism.js, be changed to allow adding a wrapping div
. However, unless/until that happens, here is a workaround for Eleventy users.
In every template you use to create pages with code blocks, add something like this, which is in Nunjucks (one of numerous templating languages Eleventy allows):
{# START, divs around Prism `pre``code` stuff #}
{% set Content = content %}
{% set withoutDivStart = '<pre class="language-' %}
{% set withDivStart = '<div class="highlight"><pre class="language-' %}
{% set withoutDivEnd = '</code></pre>' %}
{% set withDivEnd = '</code></pre></div>' %}
{% if withoutDivStart in content %}
{% set Content = content | replace (withoutDivStart, withDivStart) %}
{% set Content = Content | replace (withoutDivEnd, withDivEnd) %}
{% endif %}
{# END, divs around Prism `pre``code` stuff #}
{{ Content | safe }}
This will wrap a div
with the class of highlight
around the pre
/code
construct.
Then, assign the div
this styling:
div.highlight {
position: relative;
}
Finally, make sure the code for your chosen “copy-code” button’s HTML is set to appear between the opening div
and the pre
/code
construct, rather than between the pre
and code
parts; how you do this will vary according to that code, for which — as I noted originally — there are numerous proposed solutions out there.
This method ensures that, regardless of whether I’m running the site on Eleventy or Hugo, each of the site’s code blocks has a “copy-code” button that won’t scroll horizontally when the code itself does. If you’re an Eleventy user who likes to include code blocks in your site content, perhaps this approach can also improve your site’s “copy-code” functionality.
Latest commit (2dbb6af4
) for page file:
2023-09-22 at 5:28:08 AM CDT.
Page history