!! Version 2
##
## This file has tests for Parsoid's section-wrapping feature
##

!! article
Template:Foobar1
!! text
<noinclude>{{1x|boo}}</noinclude>

== <noinclude>Foo</noinclude><includeonly>bar</includeonly> ==
baz
!! endarticle

!! article
Template:Foobar2
!! text
<!--Some comment-->
<!--Some comment-->
<noinclude>{{1x|boo}}</noinclude>
[[Category:BadTemplate]]
__NOTOC__

== <noinclude>Foo</noinclude><includeonly>bar</includeonly> ==
baz
!! endarticle

!! article
Template:1x
!! text
{{{1}}}
!! endarticle

!! article
Template:3x_on_newline
!! text
{{{1}}}
{{{1}}}
{{{1}}}
!! endarticle

!! test
Section wrapping for well-nested sections (no leading content)
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
=1=
a

=2=
b

==2.1==
c

==2.2==
d

===2.2.1===
e

=3=
f
!! html/php

<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p>
<h1><span class="mw-headline" id="2">2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: 2">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>b
</p>
<h2><span class="mw-headline" id="2.1">2.1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: 2.1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>c
</p>
<h2><span class="mw-headline" id="2.2">2.2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: 2.2">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>d
</p>
<h3><span class="mw-headline" id="2.2.1">2.2.1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: 2.2.1">edit</a><span class="mw-editsection-bracket">]</span></span></h3>
<p>e
</p>
<h1><span class="mw-headline" id="3">3</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=6" title="Edit section: 3">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>f
</p>
!! html/parsoid
<section data-mw-section-id="0"><meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="1"><h1 id="1" data-parsoid="{}">1</h1>
<p>a</p>

</section><section data-mw-section-id="2"><h1 id="2" data-parsoid="{}">2</h1>
<p>b</p>

<section data-mw-section-id="3"><h2 id="2.1" data-parsoid="{}">2.1</h2>
<p>c</p>

</section><section data-mw-section-id="4"><h2 id="2.2" data-parsoid="{}">2.2</h2>
<p>d</p>

<section data-mw-section-id="5"><h3 id="2.2.1" data-parsoid="{}">2.2.1</h3>
<p>e</p>

</section></section></section><section data-mw-section-id="6"><h1 id="3" data-parsoid="{}">3</h1>
<p>f</p>

</section>
!! end

!! test
Section wrapping for well-nested sections (with leading content)
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
Para 1.

Para 2 with a <div>nested in it</div>

Para 3.

=1=
a

=2=
b

==2.1==
c
!! html/php
<p>Para 1.
</p><p>
Para 2 with a </p><div>nested in it</div>
<p>Para 3.
</p>
<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p>
<h1><span class="mw-headline" id="2">2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: 2">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>b
</p>
<h2><span class="mw-headline" id="2.1">2.1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: 2.1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>c
</p>
!! html/parsoid
<section data-mw-section-id="0"><p>Para 1.</p>

<p>Para 2 with a </p><div>nested in it</div>

<p>Para 3.</p>

</section><section data-mw-section-id="1"><h1 id="1" data-parsoid="{}">1</h1>
<p>a</p>

</section><section data-mw-section-id="2"><h1 id="2" data-parsoid="{}">2</h1>
<p>b</p>

<section data-mw-section-id="3"><h2 id="2.1" data-parsoid="{}">2.1</h2>
<p>c</p>

</section></section>
!! end

!! test
Section wrapping with template-generated sections (good nesting 1)
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
=1=
a

{{1x|1=
==1.1==
b
}}
==1.2==
c

=2=
d
!! html/php

<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p>
<h2><span class="mw-headline" id="1.1">1.1</span></h2>
<p>b
</p>
<h2><span class="mw-headline" id="1.2">1.2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: 1.2">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>c
</p>
<h1><span class="mw-headline" id="2">2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: 2">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>d
</p>
!! html/parsoid
<section data-mw-section-id="0"><meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="1"><h1 id="1" data-parsoid="{}">1</h1>
<p>a</p>

<section data-mw-section-id="-1"><h2 about="#mwt1" typeof="mw:Transclusion" id="1.1" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"==1.1==\nb"}},"i":0}}]}'>1.1</h2><span about="#mwt1">
</span><p about="#mwt1">b</p>
</section><section data-mw-section-id="3"><h2 id="1.2" data-parsoid="{}">1.2</h2>
<p>c</p>

</section></section><section data-mw-section-id="4"><h1 id="2" data-parsoid="{}">2</h1>
<p>d</p></section>
!! end

# In this example, the template scope is mildly expanded to incorporate the
# trailing newline after the transclusion since that is part of section 1.1.1
!! test
Section wrapping with template-generated sections (good nesting 2)
!! options
notoc
parsoid={
  "wrapSections": true,
  "modes": ["wt2html", "wt2wt"]
}
!! wikitext
=1=
a

{{1x|1=
==1.1==
b
===1.1.1===
d
}}
{{{BOOO}}} <!--needed to exercise templatearg code path in collapseWrappers-->
=2=
e
!! html/php

<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p>
<h2><span class="mw-headline" id="1.1">1.1</span></h2>
<p>b
</p>
<h3><span class="mw-headline" id="1.1.1">1.1.1</span></h3>
<p>d
{{{BOOO}}} 
</p>
<h1><span class="mw-headline" id="2">2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: 2">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>e
</p>
!! html/parsoid
<section data-mw-section-id="0"><meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="1"><h1 id="1">1</h1>
<p>a</p>

<section data-mw-section-id="-1" about="#mwt3" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}],[]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"==1.1==\nb\n===1.1.1===\nd"}},"i":0}},"\n",{"templatearg":{"target":{"wt":"BOOO"},"params":{},"i":1}}," &lt;!--needed to exercise templatearg code path in collapseWrappers-->\n"]}'><h2 about="#mwt1" typeof="mw:Transclusion" id="1.1" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}],[]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"==1.1==\nb\n===1.1.1===\nd"}},"i":0}},"\n",{"templatearg":{"target":{"wt":"BOOO"},"params":{},"i":1}}]}'>1.1</h2><span about="#mwt1">
</span><p about="#mwt1">b</p><span about="#mwt1">
</span><section data-mw-section-id="-1" about="#mwt1"><h3 about="#mwt1" id="1.1.1">1.1.1</h3><span about="#mwt1">
</span><p about="#mwt1">d
{{{BOOO}}}</p> <!--needed to exercise templatearg code path in collapseWrappers-->
</section></section></section><section data-mw-section-id="4"><h1 id="2">2</h1>
<p>e</p></section>
!! end

# In this example, the template scope is mildly expanded to incorporate the
# trailing newline after the transclusion since that is part of section 1.2.1
!! test
Section wrapping with template-generated sections (good nesting 3)
!! options
notoc
parsoid={
  "wrapSections": true,
  "modes": ["wt2html", "wt2wt"]
}
!! wikitext
=1=
a

{{1x|1=
x
==1.1==
b
==1.2==
c
===1.2.1===
d
}}
=2=
e
!! html/php

<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p><p>x
</p>
<h2><span class="mw-headline" id="1.1">1.1</span></h2>
<p>b
</p>
<h2><span class="mw-headline" id="1.2">1.2</span></h2>
<p>c
</p>
<h3><span class="mw-headline" id="1.2.1">1.2.1</span></h3>
<p>d
</p>
<h1><span class="mw-headline" id="2">2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: 2">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>e
</p>
!! html/parsoid
<section data-mw-section-id="0"><meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="1" about="#mwt2" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":["=1=\na\n\n",{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"x\n==1.1==\nb\n==1.2==\nc\n===1.2.1===\nd"}},"i":0}},"\n"]}'><h1 id="1"> 1 </h1>
<p>a</p>

<p about="#mwt1" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"x\n==1.1==\nb\n==1.2==\nc\n===1.2.1===\nd"}},"i":0}}]}'>x</p><span about="#mwt1">
</span><section data-mw-section-id="-1" about="#mwt1"><h2 about="#mwt1" id="1.1">1.1</h2><span about="#mwt1">
</span><p about="#mwt1">b</p><span about="#mwt1">
</span></section><section data-mw-section-id="-1" about="#mwt1"><h2 about="#mwt1" id="1.2">1.2</h2><span about="#mwt1">
</span><p about="#mwt1">c</p><span about="#mwt1">
</span><section data-mw-section-id="-1" about="#mwt1"><h3 about="#mwt1" id="1.2.1">1.2.1</h3><span about="#mwt1">
</span><p about="#mwt1">d</p>
</section></section></section><section data-mw-section-id="5"><h1 id="2">2</h1>
<p>e</p></section>
!! end

# Because of section-wrapping and template-wrapping interactions,
# the scope of the template is expanded so that the template markup
# is valid in the presence of <section> tags.
# This exercises the s1 is null scenario in the wrapSections code
!! test
Section wrapping with template-generated sections (bad nesting 1)
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
<div>
a

{{1x|1=
=1=
b
}}

c
</div>
!! html/php
<div>
<p>a
</p>
<h1><span class="mw-headline" id="1">1</span></h1>
<p>b
</p><p>c
</p>
</div>
!! html/parsoid
<section data-mw-section-id="-1"></section><section data-mw-section-id="-2"><div data-parsoid='{"stx":"html"}'>
<p>a</p>

<section data-mw-section-id="-1"><h1 about="#mwt1" typeof="mw:Transclusion" id="1" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"=1=\nb"}},"i":0}}]}'>1</h1><span about="#mwt1">
</span><p about="#mwt1">b</p>

<p>c</p>
</section></div></section>
!! end

# Because of section-wrapping and template-wrapping interactions,
# the scope of the template is expanded so that the template markup
# is valid in the presence of <section> tags.
# This exercises the s1 is ancestor of s2 scenario in the wrapSections code
!! test
Section wrapping with template-generated sections (bad nesting 2)
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
=1=
a

{{1x|1=
=2=
b
==2.1==
c
}}

d

=3=
e
!! html/php

<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p>
<h1><span class="mw-headline" id="2">2</span></h1>
<p>b
</p>
<h2><span class="mw-headline" id="2.1">2.1</span></h2>
<p>c
</p><p>d
</p>
<h1><span class="mw-headline" id="3">3</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: 3">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>e
</p>
!! html/parsoid
<section data-mw-section-id="0"><meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="1"><h1 id="1" data-parsoid="{}">1</h1>
<p>a</p>

</section><section data-mw-section-id="-1" about="#mwt2" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"=2=\nb\n==2.1==\nc"}},"i":0}},"\n\nd\n\n"]}'><h1 about="#mwt1" typeof="mw:Transclusion" id="2" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"=2=\nb\n==2.1==\nc"}},"i":0}}]}'>2</h1><span about="#mwt1">
</span><p about="#mwt1">b</p><span about="#mwt1">
</span><section data-mw-section-id="-1" about="#mwt1"><h2 about="#mwt1" id="2.1">2.1</h2><span about="#mwt1">
</span><p about="#mwt1">c</p>

<p>d</p>

</section></section><section data-mw-section-id="4"><h1 id="3" data-parsoid="{}">3</h1>
<p>e</p></section>
!! end

# Because of section-wrapping and template-wrapping interactions,
# additional template wrappers are added to <section> tags
# so that template wrapping semantics are valid whether section
# tags are retained or stripped. But, the template scope can expand
# greatly when accounting for section tags.
# This exercises the s1 and s2 are in different subtrees scenario
!! test
Section wrapping with template-generated sections (bad nesting 3)
!! options
notoc
parsoid={
  "wrapSections": true,
  "modes": ["wt2html", "wt2wt"]
}
!! wikitext
=1=
a

{{1x|1=
==1.2==
b
=2=
c
}}

d

=3=
e
!! html/php

<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p>
<h2><span class="mw-headline" id="1.2">1.2</span></h2>
<p>b
</p>
<h1><span class="mw-headline" id="2">2</span></h1>
<p>c
</p><p>d
</p>
<h1><span class="mw-headline" id="3">3</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: 3">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>e
</p>
!! html/parsoid
<section data-mw-section-id="0"><meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="1" about="#mwt1" typeof="mw:Transclusion" data-mw='{"parts":["=1=\na\n\n",{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"==1.2==\nb\n=2=\nc"}},"i":0}},"\n\nd\n\n"]}'><h1 id="1">1</h1>
<p>a</p>

<section data-mw-section-id="-1"><h2 about="#mwt1" typeof="mw:Transclusion" id="1.2" data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"==1.2==\nb\n=2=\nc"}},"i":0}}]}'>1.2</h2><span about="#mwt1">
</span><p about="#mwt1">b</p><span about="#mwt1">
</span></section></section><section data-mw-section-id="-1" about="#mwt1"><h1 about="#mwt1" id="2">2</h1><span about="#mwt1">
</span><p about="#mwt1">c</p>

<p>d</p>
</section><section data-mw-section-id="4"><h1 id="3">3</h1>
<p>e</p></section>
!! end

!! test
Section wrapping with uneditable lead section + div wrapping multiple sections
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
foo

<div style="border:1px solid red;">
=1=
a

==1.1==
b

=2=
c
</div>

=3=
d

==3.1==
e
!! html/php
<p>foo
</p>
<div style="border:1px solid red;">

<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p>
<h2><span class="mw-headline" id="1.1">1.1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: 1.1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>b
</p>
<h1><span class="mw-headline" id="2">2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: 2">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>c
</p>
</div>
<h1><span class="mw-headline" id="3">3</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: 3">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>d
</p>
<h2><span class="mw-headline" id="3.1">3.1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: 3.1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>e
</p>
!! html/parsoid
<section data-mw-section-id="-1"><p>foo</p>

</section><section data-mw-section-id="-2"><div style="border:1px solid red;">
<section data-mw-section-id="-2"><meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="1"><h1 id="1" data-parsoid="{}">1</h1>
<p>a</p>

<section data-mw-section-id="2"><h2 id="1.1" data-parsoid="{}">1.1</h2>
<p>b</p>

</section></section><section data-mw-section-id="-1"><h1 id="2" data-parsoid="{}">2</h1>
<p>c</p>
</section></div>

</section><section data-mw-section-id="4"><h1 id="3" data-parsoid="{}">3</h1>
<p>d</p>

<section data-mw-section-id="5"><h2 id="3.1" data-parsoid="{}">3.1</h2>
<p>e</p>
</section></section>
!! end

## Regression test for Parsoid
!! test
TOC insertion with div wrapping first heading as first child
!! options
notoc
parsoid={
  "modes": ["wt2html", "wt2wt", "html2html"],
  "wrapSections": true
}
!! wikitext
hi

<div><h3>ho</h3>
</div>

==hi==
==ho==
==hi==
==ho==
!! html/php
<p>hi
</p>
<div>
<h3><span class="mw-headline" id="ho">ho</span></h3>
</div>
<h2><span class="mw-headline" id="hi">hi</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: hi">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h2><span class="mw-headline" id="ho_2">ho</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: ho">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h2><span class="mw-headline" id="hi_2">hi</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: hi">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h2><span class="mw-headline" id="ho_3">ho</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: ho">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
!! html/parsoid
<section data-mw-section-id="-1"><p>hi</p>

</section><section data-mw-section-id="-2"><div data-parsoid='{"stx":"html"}'><section data-mw-section-id="-2"><meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="-1"><h3 id="ho" data-parsoid='{"stx":"html"}'>ho</h3>
</section></div>

</section><section data-mw-section-id="1"><h2 id="hi">hi</h2>
</section><section data-mw-section-id="2"><h2 id="ho_2">ho</h2>
</section><section data-mw-section-id="3"><h2 id="hi_2">hi</h2>
</section><section data-mw-section-id="4"><h2 id="ho_3">ho</h2></section>
!! end

!! test
Section wrapping with editable lead section + div overlapping multiple sections
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
foo

=1=
a
<div style="border:1px solid red;">
b

==1.1==
c

=2=
d
</div>
e

=3=
f

==3.1==
g
!! html/php
<p>foo
</p>

<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p>
<div style="border:1px solid red;">
<p>b
</p>
<h2><span class="mw-headline" id="1.1">1.1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: 1.1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>c
</p>
<h1><span class="mw-headline" id="2">2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: 2">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>d
</p>
</div>
<p>e
</p>
<h1><span class="mw-headline" id="3">3</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: 3">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>f
</p>
<h2><span class="mw-headline" id="3.1">3.1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: 3.1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>g
</p>
!! html/parsoid
<section data-mw-section-id="0"><p>foo</p>

<meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="-1"><h1 id="1" data-parsoid="{}">1</h1>
<p>a</p>
</section><section data-mw-section-id="-2"><div style="border:1px solid red;">
<p>b</p>

<section data-mw-section-id="2"><h2 id="1.1" data-parsoid="{}">1.1</h2>
<p>c</p>

</section><section data-mw-section-id="-1"><h1 id="2" data-parsoid="{}">2</h1>
<p>d</p>
</section></div>
<p>e</p>

</section><section data-mw-section-id="4"><h1 id="3" data-parsoid="{}">3</h1>
<p>f</p>

<section data-mw-section-id="5"><h2 id="3.1" data-parsoid="{}">3.1</h2>
<p>g</p>
</section></section>
!! end

!! test
HTML header tags should also be wrapped in section tags (with section ids set to -1)
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
foo

<h1>a</h1>

=b=

<h1>c</h1>

=d=
!! html/php
<p>foo
</p>

<h1><span class="mw-headline" id="a">a</span></h1>
<h1><span class="mw-headline" id="b">b</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: b">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<h1><span class="mw-headline" id="c">c</span></h1>
<h1><span class="mw-headline" id="d">d</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: d">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
!! html/parsoid
<section data-mw-section-id="0"><p>foo</p>

<meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="-1"><h1 id="a" data-parsoid='{"stx":"html"}'>a</h1>

</section><section data-mw-section-id="1"><h1 id="b" data-parsoid="{}">b</h1>

</section><section data-mw-section-id="-1"><h1 id="c" data-parsoid='{"stx":"html"}'>c</h1>

</section><section data-mw-section-id="2"><h1 id="d" data-parsoid="{}">d</h1></section>
!! end

!! test
Lead section containing only whitespace and comments.
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext

<!-- this is a comment, presumably significant to editors -->
=1=
a

=2=
b
!! html/php
<h1><span class="mw-headline" id="1">1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 1">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>a
</p>
<h1><span class="mw-headline" id="2">2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: 2">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p>b
</p>
!! html/parsoid
<section data-mw-section-id="0">
<!-- this is a comment, presumably significant to editors -->
</section><section data-mw-section-id="1"><h1 id="1" data-parsoid="{}">1</h1>
<p>a</p>

</section><section data-mw-section-id="2"><h1 id="2" data-parsoid="{}">2</h1>
<p>b</p>
</section>
!! end

!! test
Pseudo-sections emitted by templates should have id -2
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
foo
{{1x|<div>
==a==
==b==
</div>
}}
!! html/php
<p>foo
</p>
<div>
<h2><span class="mw-headline" id="a">a</span></h2>
<h2><span class="mw-headline" id="b">b</span></h2>
</div>
!! html/parsoid
<section data-mw-section-id="-1"><p>foo</p>
</section><section data-mw-section-id="-2"><div about="#mwt1" typeof="mw:Transclusion" data-parsoid='{"stx":"html","pi":[[{"k":"1"}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"&lt;div>\n==a==\n==b==\n&lt;/div>\n"}},"i":0}}]}'>
<section data-mw-section-id="-1"><h2 id="a">a</h2>
</section><section data-mw-section-id="-1"><h2 id="b">b</h2>
</section></div><span about="#mwt1">
</span></section>
!! end

!! test
T213468: Transcluded sections don't get PHP section numbers
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
==PHP section=1==
{{1x|1=
== This is counted as if it were section 2 ==
}}
==PHP section=3==
!! html/php
<h2><span class="mw-headline" id="PHP_section.3D1">PHP section=1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: PHP section=1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h2><span class="mw-headline" id="This_is_counted_as_if_it_were_section_2">This is counted as if it were section 2</span></h2>
<h2><span class="mw-headline" id="PHP_section.3D3">PHP section=3</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: PHP section=3">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
!! html/parsoid
<section data-mw-section-id="0"></section><section data-mw-section-id="1"><h2 id="PHP_section=1" data-parsoid="{}"><span id="PHP_section.3D1" typeof="mw:FallbackId"></span>PHP section=1</h2>
</section><section data-mw-section-id="-1"><h2 about="#mwt1" typeof="mw:Transclusion" id="This_is_counted_as_if_it_were_section_2" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"== This is counted as if it were section 2 =="}},"i":0}}]}'>This is counted as if it were section 2</h2>
</section><section data-mw-section-id="3"><h2 id="PHP_section=3" data-parsoid="{}"><span id="PHP_section.3D3" typeof="mw:FallbackId"></span>PHP section=3</h2></section>
!! end

!! test
T213468: Corner cases in edit section ID assignment in tokenizer
!! options
notoc
parsoid={
  "wrapSections": true
}
!! config
wgParserEnableLegacyMediaDOM=false
!! wikitext
==PHP section=1==
{{1x|Not a section|
== This is counted as if it were section 2 ==
}}

==PHP section=3==
{{3x_on_newline|1=
== This is counted as if it were section 4 ==
}}
==PHP section=5==
{{#tag:p|Not a section|data-ignored=
== This is counted as if it were section 6 ==
}}
==PHP section=7==
{{1x|1=Not a ==heading==}}

==PHP section=8==
[[File:Foobar.jpg|thumb|
==This is section 9, even though it's in a caption==
]]
==PHP section=10==
!! html/php

<h2><span class="mw-headline" id="PHP_section.3D1">PHP section=1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: PHP section=1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>Not a section
</p>
<h2><span class="mw-headline" id="PHP_section.3D3">PHP section=3</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: PHP section=3">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h2><span class="mw-headline" id="This_is_counted_as_if_it_were_section_4">This is counted as if it were section 4</span></h2>
<h2><span class="mw-headline" id="This_is_counted_as_if_it_were_section_4_2">This is counted as if it were section 4</span></h2>
<h2><span class="mw-headline" id="This_is_counted_as_if_it_were_section_4_3">This is counted as if it were section 4</span></h2>
<h2><span class="mw-headline" id="PHP_section.3D5">PHP section=5</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: PHP section=5">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p data-ignored="== This is counted as if it were section 6 ==">Not a section</p>
<h2><span class="mw-headline" id="PHP_section.3D7">PHP section=7</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=7" title="Edit section: PHP section=7">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>Not a ==heading==
</p>
<h2><span class="mw-headline" id="PHP_section.3D8">PHP section=8</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=8" title="Edit section: PHP section=8">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<figure class="mw-default-size" typeof="mw:File/Thumb"><a href="/wiki/File:Foobar.jpg" class="mw-file-description"><img src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" decoding="async" width="180" height="20" class="mw-file-element" srcset="http://example.com/images/thumb/3/3a/Foobar.jpg/270px-Foobar.jpg 1.5x, http://example.com/images/thumb/3/3a/Foobar.jpg/360px-Foobar.jpg 2x" /></a><figcaption><h2><span class="mw-headline" id="This_is_section_9.2C_even_though_it.27s_in_a_caption">This is section 9, even though it's in a caption</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=9" title="Edit section: This is section 9, even though it&#039;s in a caption">edit</a><span class="mw-editsection-bracket">]</span></span></h2></figcaption></figure>
<h2><span class="mw-headline" id="PHP_section.3D10">PHP section=10</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=10" title="Edit section: PHP section=10">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
!! html/parsoid
<section data-mw-section-id="0"><meta property="mw:PageProp/toc" data-mw='{"autoGenerated":true}'/></section><section data-mw-section-id="1"><h2 id="PHP_section=1" data-parsoid="{}"><span id="PHP_section.3D1" typeof="mw:FallbackId"></span>PHP section=1</h2>
<p><span about="#mwt1" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1"},{"k":"2"}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"Not a section"},"2":{"wt":"\n== This is counted as if it were section 2 ==\n"}},"i":0}}]}'>Not a section</span></p>
</section><section data-mw-section-id="3"><h2 id="PHP_section=3" data-parsoid="{}"><span id="PHP_section.3D3" typeof="mw:FallbackId"></span>PHP section=3</h2>
</section><section data-mw-section-id="-1" about="#mwt5" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"3x_on_newline","href":"./Template:3x_on_newline"},"params":{"1":{"wt":"== This is counted as if it were section 4 =="}},"i":0}},"\n"]}'><h2 about="#mwt2" typeof="mw:Transclusion" id="This_is_counted_as_if_it_were_section_4" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"3x_on_newline","href":"./Template:3x_on_newline"},"params":{"1":{"wt":"== This is counted as if it were section 4 =="}},"i":0}}]}'>This is counted as if it were section 4</h2><span about="#mwt2">
</span></section><section data-mw-section-id="-1" about="#mwt5"><h2 about="#mwt2" id="This_is_counted_as_if_it_were_section_4_2">This is counted as if it were section 4</h2><span about="#mwt2">
</span></section><section data-mw-section-id="-1" about="#mwt5"><h2 about="#mwt2" id="This_is_counted_as_if_it_were_section_4_3">This is counted as if it were section 4</h2>
</section><section data-mw-section-id="5"><h2 id="PHP_section=5" data-parsoid="{}"><span id="PHP_section.3D5" typeof="mw:FallbackId"></span>PHP section=5</h2>
<p data-ignored=" This is counted as if it were section 6 " about="#mwt3" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1"},{"k":"data-ignored","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"#tag:p","function":"tag"},"params":{"1":{"wt":"Not a section"},"data-ignored":{"wt":"== This is counted as if it were section 6 =="}},"i":0}}]}'>Not a section</p>
</section><section data-mw-section-id="7"><h2 id="PHP_section=7" data-parsoid="{}"><span id="PHP_section.3D7" typeof="mw:FallbackId"></span>PHP section=7</h2>
<p><span about="#mwt4" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1","named":true}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"Not a ==heading=="}},"i":0}}]}'>Not a ==heading==</span></p>
</section><section data-mw-section-id="8"><h2 id="PHP_section=8" data-parsoid="{}"><span id="PHP_section.3D8" typeof="mw:FallbackId"></span>PHP section=8</h2>
<figure class="mw-default-size" typeof="mw:File/Thumb" data-parsoid='{"optList":[{"ck":"thumbnail","ak":"thumb"},{"ck":"caption","ak":"\n==This is section 9, even though it&apos;s in a caption==\n"}]}'><a href="./File:Foobar.jpg" class="mw-file-description"><img resource="./File:Foobar.jpg" src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" decoding="async" data-file-width="1941" data-file-height="220" data-file-type="bitmap" height="20" width="180" srcset="http://example.com/images/thumb/3/3a/Foobar.jpg/270px-Foobar.jpg 1.5x, http://example.com/images/thumb/3/3a/Foobar.jpg/360px-Foobar.jpg 2x" class="mw-file-element"/></a><figcaption>
<section data-mw-section-id="-1"><h2 id="This_is_section_9,_even_though_it's_in_a_caption" data-parsoid="{}"><span id="This_is_section_9.2C_even_though_it.27s_in_a_caption" typeof="mw:FallbackId"></span>This is section 9, even though it's in a caption</h2>
</section></figcaption></figure>
</section><section data-mw-section-id="10"><h2 id="PHP_section=10" data-parsoid="{}"><span id="PHP_section.3D10" typeof="mw:FallbackId" data-parsoid='{}'></span>PHP section=10</h2></section>
!! end

!! test
T215628: Section numbering and <includeonly> and <noinclude> on a page
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
==PHP section=1==
<noinclude>
==PHP section=2==
</noinclude>
==PHP section=3==
<includeonly>
==This is not counted as section 4==
</includeonly>
==PHP section=4==
!! html/php

<h2><span class="mw-headline" id="PHP_section.3D1">PHP section=1</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: PHP section=1">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h2><span class="mw-headline" id="PHP_section.3D2">PHP section=2</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: PHP section=2">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h2><span class="mw-headline" id="PHP_section.3D3">PHP section=3</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: PHP section=3">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h2><span class="mw-headline" id="PHP_section.3D4">PHP section=4</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: PHP section=4">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
!! html/parsoid
PARSOID HAS A BUG HERE: T215628
!! end

!! test
T236866: Ensure comments are handled correctly during section wrapping
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
<!-- 내 (use a multi-byte char to demonstrate effect of bad offsets) -->
{{1x|1=
x
==boo==
}}
!! html/php
<p>x
</p>
<h2><span class="mw-headline" id="boo">boo</span></h2>
!! html/parsoid
<section data-mw-section-id="0" about="#mwt2" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":["&lt;!-- 내 (use a multi-byte char to demonstrate effect of bad offsets) -->\n",{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"x\n==boo=="}},"i":0}}]}'><!-- 내 (use a multi&#x2D;byte char to demonstrate effect of bad offsets) -->
<p about="#mwt1" typeof="mw:Transclusion" data-parsoid='{"pi":[[{"k":"1","named":true,"spc":["","","\n","\n"]}]]}' data-mw='{"parts":[{"template":{"target":{"wt":"1x","href":"./Template:1x"},"params":{"1":{"wt":"x\n==boo=="}},"i":0}}]}'>x</p><span about="#mwt1">
</span></section><section data-mw-section-id="-1" about="#mwt2"><h2 about="#mwt1" id="boo">boo</h2></section>
!! end

!! test
T265737: 1. Relax section start requirements to reduce unnecessary conflicts between template and section boundaries
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
= x =
{{Foobar1}}
y
!! html/php
<h1><span class="mw-headline" id="x">x</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: x">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<h2><span class="mw-headline" id="bar">bar</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Template:Foobar1&amp;action=edit&amp;section=T-1" title="Edit section: bar">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>baz
y
</p>
!! html/parsoid
<section data-mw-section-id="0"></section><section data-mw-section-id="1"><h1 id="x">x</h1>
<section data-mw-section-id="-1"><span about="#mwt1" typeof="mw:Transclusion" data-parsoid='{"pi":[[]]}' data-mw='{"parts":[{"template":{"target":{"wt":"Foobar1","href":"./Template:Foobar1"},"params":{},"i":0}},"\ny"]}'>

</span><h2 about="#mwt1" id="bar">bar</h2><span about="#mwt1">
</span><p about="#mwt1">baz
y</p></section></section>
!! end

!! test
T265737: 2. Relax section start requirements to reduce unnecessary conflicts between template and section boundaries
!! options
notoc
parsoid={
  "wrapSections": true
}
!! wikitext
= x =
{{Foobar2}}
y
!! html/php
<h1><span class="mw-headline" id="x">x</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: x">edit</a><span class="mw-editsection-bracket">]</span></span></h1>
<p><br />
</p>
<h2><span class="mw-headline" id="bar">bar</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Template:Foobar2&amp;action=edit&amp;section=T-1" title="Edit section: bar">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>baz
y
</p>
!! html/parsoid
<section data-mw-section-id="0"></section><section data-mw-section-id="1"><h1 id="x">x</h1>
<section data-mw-section-id="-1"><span about="#mwt1" typeof="mw:Transclusion" data-parsoid='{"pi":[[]]}' data-mw='{"parts":[{"template":{"target":{"wt":"Foobar2","href":"./Template:Foobar2"},"params":{},"i":0}},"\ny"]}'><!--Some comment--></span><span about="#mwt1">
</span><span about="#mwt1"><!--Some comment--></span><span about="#mwt1">

</span><link rel="mw:PageProp/Category" href="./Category:BadTemplate" about="#mwt1"/><span about="#mwt1">
</span><meta property="mw:PageProp/notoc" about="#mwt1"/><span about="#mwt1">

</span><h2 about="#mwt1" id="bar">bar</h2><span about="#mwt1">
</span><p about="#mwt1">baz
y</p></section></section>
!! end
