Hi All!
I think there is an error in file "simple2.html" (test/templates/simple2.html) that invalidates the result of some tests like "Engine Test".
I notice that for test case "Engine Test" you compare the compilation of "simple2.htl" with the "simple2.html".
But if I do a manual comparison of the two files I can see a very interesting difference in some meta tags of the page.
>> FILE simple2.html
- <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <meta name="viewport" content="width=device-width, initial-scale=1"/>
- <meta name="title" content="Hello, world!"/>
>> FILE simple2.htl
+ <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
+ <meta name="title" content="Hello, world!"/>
Maybe I missing something, but why standard meta are escaped? They are not inside an HTL context.
shouldn't they be kept as they are in "simple2.htl" file?
Thanks
M
Hi All!
I think there is an error in file "simple2.html" (test/templates/simple2.html) that invalidates the result of some tests like "Engine Test".
I notice that for test case "Engine Test" you compare the compilation of "simple2.htl" with the "simple2.html".
But if I do a manual comparison of the two files I can see a very interesting difference in some meta tags of the page.
>> FILE simple2.html - <meta http-equiv="X-UA-Compatible" content="IE=edge"/> - <meta name="viewport" content="width=device-width, initial-scale=1"/> - <meta name="title" content="Hello, world!"/> >> FILE simple2.htl + <meta http-equiv="X-UA-Compatible" content="IE=edge"/> + <meta name="viewport" content="width=device-width, initial-scale=1"/> + <meta name="title" content="Hello, world!"/>Maybe I missing something, but why standard meta are escaped? They are not inside an HTL context.
shouldn't they be kept as they are in "simple2.htl" file?
Thanks
M