Fix failing tests
This commit is contained in:
parent
dc2385fcfd
commit
dfb45c026a
|
@ -7,6 +7,7 @@
|
|||
max_preserve_newlines: 1
|
||||
preserve_newlines: true
|
||||
wrap_line_length: 0
|
||||
indent_inner_html: true
|
||||
cfml:
|
||||
brace_style: "collapse"
|
||||
indent_char: " "
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Test Page</title>
|
||||
</head>
|
||||
<head>
|
||||
<title>Test Page</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Hello</h1>
|
||||
<p>
|
||||
World!
|
||||
</p>
|
||||
</body>
|
||||
<body>
|
||||
<h1>Hello</h1>
|
||||
<p>
|
||||
World!
|
||||
</p>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,14 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<title>Test</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<ul>
|
||||
<li>
|
||||
<code>foo:bar</code>
|
||||
</li>
|
||||
<li><code>foo:bar</code></li>
|
||||
</ul>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,18 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>My Webpage</title>
|
||||
</head>
|
||||
<head>
|
||||
<title>My Webpage</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<ul id="navigation">
|
||||
{% for item in navigation %}
|
||||
<li><a href="{{ item.href }}">{{ item.caption }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<body>
|
||||
<ul id="navigation">
|
||||
{% for item in navigation %}
|
||||
<li><a href="{{ item.href }}">{{ item.caption }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<h1>My Webpage</h1> {{ a_variable }}
|
||||
</body>
|
||||
<h1>My Webpage</h1> {{ a_variable }}
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: This is a title!
|
||||
title: 'This is a title!'
|
||||
---
|
||||
|
||||
stuff
|
||||
|
|
Loading…
Reference in New Issue