mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:39:36 +08:00
9460ed1b60
Found with rpmlint.
31 lines
317 B
Plaintext
31 lines
317 B
Plaintext
Simple block on one line:
|
|
|
|
<div>foo</div>
|
|
|
|
And nested without indentation:
|
|
|
|
<div>
|
|
<div>
|
|
<div>
|
|
foo
|
|
</div>
|
|
<div style=">"></div>
|
|
</div>
|
|
<div>bar</div>
|
|
</div>
|
|
|
|
And with attributes:
|
|
|
|
<div>
|
|
<div id="foo">
|
|
</div>
|
|
</div>
|
|
|
|
This was broken in 1.0.2b7:
|
|
|
|
<div class="inlinepage">
|
|
<div class="toggleableend">
|
|
foo
|
|
</div>
|
|
</div>
|