(ref: https://gerrit.wikimedia.org/r/#/c/395477/9)
In WikiTextStructure,
foo<div>bar</div>baz
must indexed as
foo bar baz
and not as
foobarbaz
But
foo<i>bar</i>baz
must indexed as
foobarbaz
and not as
foo bar baz
Also, after T182074, the auxText of the table will become packed together:
Input:
{| class="wikitable" |- ! Header table |- | row in table |- | another row in table |}
Expected: (after T182074)
Header table row in table another row in table
Current: (after T182074)
Header tablerow in tableanother row in table