Mercurial > vim
view runtime/indent/testdir/html.in @ 25444:c80bfd306c7d
Added tag v8.2.3258 for changeset 9ed6587bcc0f55d8bb8932a55320e5f29bae91f2
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 31 Jul 2021 19:15:03 +0200 |
parents | 21fb2a3ad3ca |
children | 4789f29c9595 |
line wrap: on
line source
" vim: set ft=html sw=4 : " START_INDENT <html> <body> <style> div#d1 { color: red; } div#d2 { color: green; } </style> <script> var v1 = "v1"; var v2 = "v2"; </script> <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> </body> </html> " END_INDENT % START_INDENT % INDENT_EXE let g:html_indent_style1 = "inc" % INDENT_EXE let g:html_indent_script1 = "zero" % INDENT_EXE call HtmlIndent_CheckUserSettings() <html> <body> <style> div#d1 { color: red; } div#d2 { color: green; } </style> <script> var v1 = "v1"; var v2 = "v2"; </script> </body> </html> % END_INDENT