0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.0 KiB
Plaintext
Raw Normal View History

2022-08-19 17:15:35 +01:00
% vim: set ft=html sw=4 ts=8 :
2018-12-09 20:43:55 +01:00
2022-08-19 17:15:35 +01:00
% START_INDENT
2020-07-10 22:00:53 +02:00
<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>
2020-06-21 22:12:03 +02:00
2020-07-10 22:00:53 +02:00
<div
2021-02-13 18:14:48 +01:00
class="foo bar">
2020-07-10 22:00:53 +02:00
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>
2022-01-31 15:40:56 +00:00
<div
class="test"
style="color: yellow">
text
</div>
2020-07-10 22:00:53 +02:00
</body>
</html>
2020-06-21 22:12:03 +02:00
2022-08-19 17:15:35 +01:00
% END_INDENT
2020-07-10 22:00:53 +02:00
% START_INDENT
% INDENT_EXE let g:html_indent_style1 = "inc"
% INDENT_EXE let g:html_indent_script1 = "zero"
2022-01-31 15:40:56 +00:00
% INDENT_EXE let g:html_indent_attribute = 1
2020-07-10 22:00:53 +02:00
% 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>
2022-01-31 15:40:56 +00:00
<div
class="test"
style="color: yellow">
text
</div>
2020-07-10 22:00:53 +02:00
</body>
</html>
% END_INDENT