blob: c0dfc9dc72c52bc56f19f6cb57e0f7dec89c935a [file] [log] [blame]
Bram Moolenaard47d5222018-12-09 20:43:55 +01001" vim: set ft=html sw=4 :
2
3
4" START_INDENT
Bram Moolenaar7ff78462020-07-10 22:00:53 +02005<html>
6 <body>
7 <style>
8div#d1 { color: red; }
9div#d2 { color: green; }
10 </style>
11 <script>
12 var v1 = "v1";
13 var v2 = "v2";
14 </script>
15 <div>
16 <div>
17 text
18 </div>
19 </div>
Bram Moolenaard47d5222018-12-09 20:43:55 +010020
Bram Moolenaar7ff78462020-07-10 22:00:53 +020021 <div
Bram Moolenaar942db232021-02-13 18:14:48 +010022 class="foo bar">
Bram Moolenaar7ff78462020-07-10 22:00:53 +020023 text
24 </div>
Bram Moolenaard47d5222018-12-09 20:43:55 +010025
Bram Moolenaar7ff78462020-07-10 22:00:53 +020026 <div class="foo bar"
27 data="something">
28 text
29 </div>
Bram Moolenaard47d5222018-12-09 20:43:55 +010030
Bram Moolenaar7ff78462020-07-10 22:00:53 +020031 <div class="foo
32 bar">
33 text
34 </div>
Bram Moolenaard47d5222018-12-09 20:43:55 +010035
Bram Moolenaar7ff78462020-07-10 22:00:53 +020036 <dl>
37 <dd>
38 dd text
39 </dd>
40 <dt>
41 dt text
42 </dt>
43 </dl>
Bram Moolenaar73fef332020-06-21 22:12:03 +020044
Bram Moolenaar7ff78462020-07-10 22:00:53 +020045 </body>
46</html>
Bram Moolenaar73fef332020-06-21 22:12:03 +020047
Bram Moolenaard47d5222018-12-09 20:43:55 +010048" END_INDENT
Bram Moolenaar7ff78462020-07-10 22:00:53 +020049
50% START_INDENT
51% INDENT_EXE let g:html_indent_style1 = "inc"
52% INDENT_EXE let g:html_indent_script1 = "zero"
53% INDENT_EXE call HtmlIndent_CheckUserSettings()
54<html>
55 <body>
56 <style>
57 div#d1 { color: red; }
58 div#d2 { color: green; }
59 </style>
60 <script>
61var v1 = "v1";
62var v2 = "v2";
63 </script>
64 </body>
65</html>
66% END_INDENT