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
<ul>
<li>Value 1</li>
<li>Value 2
<template id="template-1">
<li>Template 1 Value 1</li>
<li>Template 1 Value 2</li>
</template>
</li>
<li>Value 3</li>
</ul>
we get the following Output:
<ul>
<li>Value 1</li>
<li>Value 2
<template id="template-1">
</template>
</li>
<li>Template 1 Value 1</li>
<li>Template 1 Value 2</li>
<li>Value 3</li>
</ul>
The template-tag is empty and all the contents are added after the tag. We would expect the content of this tag is optimized but remains inside the tag.
If we parse the following html
we get the following Output:
The template-tag is empty and all the contents are added after the tag. We would expect the content of this tag is optimized but remains inside the tag.
We use following OutputSettings:
For parsing we use:
The text was updated successfully, but these errors were encountered: