如何避免在从 table 复制的 firefox 中出现额外的换行符?

How do I avoid extra newlines in firefox copying from a table?

我正在尝试在 html+css(没有 javascript)中呈现源代码,以便:

我得到的解决方案使用 CSS 计数器和 table,其中最左边的列是数据伪内容(也标记为 unselectable)。它在 Firefox、Safari 和 Chrome 中正确呈现,但将文本复制到剪贴板时出现问题。

有一个演示 on jsfiddle 显示了这个问题。尝试将文本复制到 Firefox 中的剪贴板会在每行之间放置一个空行(即额外的换行符)。

我该如何解决这个问题(仅使用 html+css)?

.code {
  background-color: none;
  border: none;
  padding: 0;
}

pre.code {
  line-height: 1.6;
  white-space: pre-wrap;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
}

;
pre.code table {
  counter-reset: linenum;
}

pre.code td.lnum:before {
  content: attr(data-psuedo-content) counter(linenum);
}

pre.code td.content {
  font-size: 14px;
  background: #333740;
  color: #ffffff;
  white-space: pre-wrap;
  padding: 3px;
  border-right: solid 2px black;
}

td.lnum {
  background-color: #a7a8aa;
  color: #000000;
  border-right: 2px solid black;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-left: none;
  font-size: 12px;
}

pre.code tr {
  counter-increment: linenum;
}

.lnum {
  -moz-user-select: none;
  webkit-user-select: none;
  ms-user-select: none;
}
<pre class="code">
  <table style="width: 100%;border-collapse: collapse">
    <tr><td class="lnum"></td><td class="content">#include &lt;stdint.h&gt;</td></tr>
    <tr><td class="lnum"></td><td class="content">#include &lt;stdbool.h&gt;</td></tr>
    <tr><td class="lnum"></td><td class="content"></td></tr>
    <tr><td class="lnum"></td><td class="content">/*-</td></tr>
    <tr><td class="lnum"></td><td class="content"> | Support for x86 operations that are not exposed natively in C. Each of these</td></tr>
    <tr><td class="lnum"></td><td class="content"> | is a fragment of inline-assembly (a way of injecting assembly code into the</td></tr>
    <tr><td class="lnum"></td><td class="content"> | compiled program). Each one is wrapped in an inline procedure so that the </td></tr>
  </table>
</pre>

不要添加此代码

.lnum { 
      -moz-user-select: none;
      webkit-user-select: none;
      ms-user-select: none;
    }

我用JavaScript挂钩复制事件:

const source = document.querySelector('pre.code');

source.addEventListener('copy', (event) => {
    const selection = document.getSelection();
    event.clipboardData.setData('text/plain', selection.toString());
    event.preventDefault();
});