comparison runtime/indent/testdir/html.in @ 21250:21fb2a3ad3ca

Update runtime files Commit: https://github.com/vim/vim/commit/7ff78465f7057a672a6de0d75d56286da253501b Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 10 22:00:53 2020 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 10 Jul 2020 22:15:08 +0200
parents 59f93c2d2551
children 4789f29c9595
comparison
equal deleted inserted replaced
21249:ade13ad020ef 21250:21fb2a3ad3ca
1 " vim: set ft=html sw=4 : 1 " vim: set ft=html sw=4 :
2 2
3 3
4 " START_INDENT 4 " START_INDENT
5 <html>
6 <body>
7 <style>
8 div#d1 { color: red; }
9 div#d2 { color: green; }
10 </style>
11 <script>
12 var v1 = "v1";
13 var v2 = "v2";
14 </script>
5 <div> 15 <div>
6 <div> 16 <div>
7 text 17 text
8 </div> 18 </div>
9 </div> 19 </div>
30 <dt> 40 <dt>
31 dt text 41 dt text
32 </dt> 42 </dt>
33 </dl> 43 </dl>
34 44
45 </body>
46 </html>
35 47
36 " END_INDENT 48 " END_INDENT
49
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>
61 var v1 = "v1";
62 var v2 = "v2";
63 </script>
64 </body>
65 </html>
66 % END_INDENT