mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-22 10:26:20 +00:00
04a5ce0b65
* test/manual/indent/html-multi-2.html: New file. * test/manual/indent/html-multi-3.html: New file.
36 lines
468 B
HTML
36 lines
468 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>test</title>
|
|
<!--
|
|
<script>
|
|
// No indent in a comment
|
|
if (true) {
|
|
do not change;
|
|
}
|
|
</script>
|
|
-->
|
|
|
|
<style type="text/css">
|
|
h1 {
|
|
font-family: 'Spinnaker', sans-serif;
|
|
}
|
|
</style>
|
|
<script>
|
|
var a = 4 < 5;
|
|
function() {
|
|
if (x > 75)
|
|
return 25;
|
|
return "hello";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
<!--
|
|
Local Variables:
|
|
mhtml-tag-relative-indent: ignore
|
|
End:
|
|
-->
|
|
</html>
|