view runtime/indent/testdir/html.ok @ 23931:5b37a0bf7e3a

Update runtime files Commit: https://github.com/vim/vim/commit/942db23c9cb7532d68048530d749eb84ca94d0cd Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 13 18:14:48 2021 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Feb 2021 18:15:04 +0100
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