mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
37 lines
261 B
HTML
37 lines
261 B
HTML
" vim: set ft=html sw=4 :
|
|
|
|
|
|
" START_INDENT
|
|
<div>
|
|
<div>
|
|
text
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
class="foo bar">
|
|
text
|
|
</div>
|
|
|
|
<div class="foo bar"
|
|
data="something">
|
|
text
|
|
</div>
|
|
|
|
<div class="foo
|
|
bar">
|
|
text
|
|
</div>
|
|
|
|
<dl>
|
|
<dd>
|
|
dd text
|
|
</dd>
|
|
<dt>
|
|
dt text
|
|
</dt>
|
|
</dl>
|
|
|
|
|
|
" END_INDENT
|