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
You should see Avoid an excessive DOM size (3,458 elements) error
This is because of the use of the HTML tables which add a few layers of depth to the DOM tree. With more complex usages this number can grow up to 10k+. I don't think this problem can be completely solved because highlight.js adds a lot of HTML elements but it should be possible to lower this number a bit by avoiding the <table> element. Proof of concept is browser visual studio code diff which uses only a combination of divs and spans.
I am going to spend some time on this issue to see what are potential cons of this approach.
The text was updated successfully, but these errors were encountered:
I have to display a diff that comes from other changes. I can't guarantee that it will be small.
Right now, with a sizable diff (lots of files, specifically), loading diff2html is really slow. I wonder if the element count has something to do with it.
@brandonsturgeon I have paused the work on this due to higher priorities in other projects. I could go down with the count slightly but the further I went the more hacks I implemented with which I did not feel ok and ultimately lost motivation for a moment. I guess if we could break it into steps of minor improvements, the progress of this task would be better. What do you think?
Step 1: Describe the problem:
Steps to reproduce:
Observed Results:
This is because of the use of the HTML tables which add a few layers of depth to the DOM tree. With more complex usages this number can grow up to 10k+. I don't think this problem can be completely solved because highlight.js adds a lot of HTML elements but it should be possible to lower this number a bit by avoiding the
<table>
element. Proof of concept is browser visual studio code diff which uses only a combination of divs and spans.I am going to spend some time on this issue to see what are potential cons of this approach.
The text was updated successfully, but these errors were encountered: