diff --git a/autotests/folding/test.htm.fold b/autotests/folding/test.htm.fold --- a/autotests/folding/test.htm.fold +++ b/autotests/folding/test.htm.fold @@ -8,8 +8,8 @@ h1 { font: "Comic Sans"; } > - -

Hello world!

+ +

Hello, {{ name }}!

> document.body.appendChild(document.createTextNode('Hello World!')); // comment diff --git a/autotests/html/test.htm.html b/autotests/html/test.htm.html --- a/autotests/html/test.htm.html +++ b/autotests/html/test.htm.html @@ -14,8 +14,8 @@ h1 { font: "Comic Sans"; } </style> </head> - <body> - <p id="xzy">Hello world!</p> + <body class="ui main"> + <p *ngFor="let name of names">Hello, {{ name }}!</p> </body> <script> document.body.appendChild(document.createTextNode('Hello World!')); // comment diff --git a/autotests/input/test.htm b/autotests/input/test.htm --- a/autotests/input/test.htm +++ b/autotests/input/test.htm @@ -8,8 +8,8 @@ h1 { font: "Comic Sans"; } - -

Hello world!

+ +

Hello, {{ name }}!