59naga / victorica

a simple html beautifier

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

unexpected open tag (never beautifying)

59naga opened this issue · comments

victorica.beautify('<span><strong>foo<strong>bar<strong>baz',{debug:true})
// Level, Open, Close, Ignore, Void, Alone, Uplevel
// L O C I V A U -------- chunk --------
// 0 1 1 1 1 0 0 '"\\n<span><strong>foo<strong>bar<strong>ba</span>"'
// 0 1 1 1 1 0 0 '"\\n<strong>foo<strong>bar<strong>ba</strong>"'
// 0 1 1 1 1 0 0 '"\\ntrong>foo\\n<strong>bar<strong>ba</strong>"'
// 0 1 1 1 1 0 0 '"\\ntrong>foo\\n<strong>bar<strong>ba</strong>"'
// ... infinite ...

should be:

<span>
<strong>foo
<strong>bar
<strong>baz