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
So, colors may need to be remembered to be re-applied inside the next DOM element
Unless this is refactored to not do one DOM element per line.
The DOM elements per line are used for:
Linking (through id)
Making a visual marker per-line
Linking shouldn't be an issue to fix, add an empty <span id="L__" /> at the start of the line. It will make highlighting full line harder, but still possible.
Peppering more DOM elements to make visual delimitations between lines may fix the issue, or even a ::before for the empty span (which could also handle making the newline)
The text was updated successfully, but these errors were encountered:
Maybe this'll help
https://github.com/nteract/nteract/tree/master/packages/ansi-to-reactThis isn't react-based, right.
Anyway, the biggest issues we have are these:
Unless this is refactored to not do one DOM element per line.
The DOM elements per line are used for:
id
)Linking shouldn't be an issue to fix, add an empty
<span id="L__" />
at the start of the line. It will make highlighting full line harder, but still possible.Peppering more DOM elements to make visual delimitations between lines may fix the issue, or even a
::before
for the empty span (which could also handle making the newline)The text was updated successfully, but these errors were encountered: