You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When viewed on Firefox, if you copy a code snippet from Torchlight it adds an additional newline for every line. Copying an example on the homepage to the clipboard and then pasting results in the following:
<x-code-torchlight language='php'>
// Any code here will be highlighted by Torchlight!
</x-code-torchlight>
While on Chrome it copies like it should:
<x-code-torchlight language='php'>
// Any code here will be highlighted by Torchlight!
</x-code-torchlight>
It looks like Firefox copies the span.line-number as an empty line. I removed these elements from the DOM and then copying is as expected
The text was updated successfully, but these errors were encountered:
When viewed on Firefox, if you copy a code snippet from Torchlight it adds an additional newline for every line. Copying an example on the homepage to the clipboard and then pasting results in the following:
<x-code-torchlight language='php'> // Any code here will be highlighted by Torchlight! </x-code-torchlight>
While on Chrome it copies like it should:
<x-code-torchlight language='php'> // Any code here will be highlighted by Torchlight! </x-code-torchlight>
It looks like Firefox copies the
span.line-number
as an empty line. I removed these elements from the DOM and then copying is as expectedThe text was updated successfully, but these errors were encountered: