AST may be reporting the wrong length of HTML block
See original GitHub issueI don’t know enough about the nuances of Markdown and the AST to know if this a bug so I’ll just report it.
Given at the beginning of a document:
<pre>
</pre
The AST will report the HTML block begins at offset 0 with a length of 12
Close the tag however:
<pre>
</pre>
And the AST reports the block begins at offset 0 with a length of 7.
Reported in https://github.com/mike-ward/Markdown-Edit/issues/165
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Handling common HTML and CSS problems - MDN Web Docs
Let's go forth and look at how we can reduce cross browser errors that result from HTML/CSS.
Read more >You Need to Avoid These ATS Formatting Mistakes
Are ATS formatting mistakes sabotaging your chances of landing your dream job? This article shows how to avoid the most common errors.
Read more >error_reporting - Manual
PHP has many levels of errors, using this function sets that level for the duration (runtime) of your script. If the optional error_level...
Read more >Structural markup and right-to-left text in HTML
This article looks at ways of handling text direction for structural markup in HTML, ie. at the document level and for elements like ......
Read more >HTML Style Guide and Coding Conventions
A consistent, clean, and tidy HTML code makes it easier for others to read and understand your code. Here are some guidelines and...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
0.13.3 has been pushed to nuget. Hopefully it fixes the issue.
Yep, that fixes it. Thanks!