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:
parent
830ab75ce0
commit
4a6bd60df0
1 changed files with 2 additions and 6 deletions
|
@ -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>
|
||||
|
|
Reference in a new issue