summaryrefslogtreecommitdiffstats
path: root/runtime/indent/testdir/html.ok
blob: a96141fb3b827166e7137e5e7d1ccac8a9a3dc46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
" 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