Remove whitespace inside rendered code `<td>` (#17859)

This extra whitespace caused isses in Firefox where it would copy a
extra space character at the start and the end. Additionally, in Chrome,
the text selection indicated a spaced on the end of the selection where
there was none. Both issues are fixed with the removal of whitespace.
This commit is contained in:
silverwind 2021-11-29 14:01:56 -08:00 committed by GitHub
parent 830ab75ce0
commit 4a6bd60df0
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,12 +103,8 @@
{{range $idx, $code := .FileContent}}
{{$line := Add $idx 1}}
<tr>
<td id="L{{$line}}" class="lines-num">
<span id="L{{$line}}" data-line-number="{{$line}}"></span>
</td>
<td rel="L{{$line}}" class="lines-code chroma">
<code class="code-inner">{{$code | Safe}}</code>
</td>
<td id="L{{$line}}" class="lines-num"><span id="L{{$line}}" data-line-number="{{$line}}"></span></td>
<td rel="L{{$line}}" class="lines-code chroma"><code class="code-inner">{{$code | Safe}}</code></td>
</tr>
{{end}}
</tbody>