Bug: Compiler creates duplicate <head> element
See original GitHub issueOn the editor page, demo HEML content:
<heml>
<head>
<subject>Welcome to HEML!</subject>
<style>
body { background: SkyBlue; }
h1 { color: DarkViolet; }
</style>
</head>
<body>
<container>
<marquee><h1>Explore the world of email! 💌</h1></marquee>
</container>
</body>
</heml>
Produces an additional opening <head> and closing </head> elements:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head> </head>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="x-apple-disable-message-reformatting" />
<!--[if !mso]><!-->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!--<![endif]-->
<style type="text/css">
* {
text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
html {
height: 100%;
width: 100%;
}
body {
height: 100% !important;
margin: 0 !important;
padding: 0 !important;
width: 100% !important;
mso-line-height-rule: exactly;
}
div[style*="margin: 16px 0"] {
margin: 0 !important;
}
table,
td {
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
}
img {
border: 0;
height: auto;
line-height: 100%;
outline: none;
text-decoration: none;
-ms-interpolation-mode: bicubic;
}
.ReadMsgBody,
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
</style>
<!--[if gte mso 9]>
<style type="text/css">
li { text-indent: -1em; }
table td { border-collapse: collapse; }
</style>
<![endif]-->
<title>Welcome to HEML!</title>
<!-- content -->
<!--[if gte mso 9]><xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml><![endif]-->
</head>
<body class="body" style="background-color: #87CEEB; margin: 0; width: 100%;">
<table class="bodyTable" role="presentation" width="100%" align="left" border="0" cellpadding="0" cellspacing="0" style="width: 100%; background-color: #87CEEB; margin: 0;" bgcolor="#87CEEB">
<tr>
<td class="body__content" align="left" width="100%" valign="top" style="color: #000000; font-family: Helvetica,Arial,sans-serif; font-size: 16px; line-height: 20px;">
<div class="container" style="margin: 0 auto; max-width: 600px; width: 100%;"> <!--[if mso | IE]>
<table class="container__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="margin-right: auto; margin-left: auto;width: 600px" width="600" align="center">
<tr>
<td> <![endif]-->
<table class="container__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="container__row">
<td class="container__cell" width="100%" align="left" valign="top">
<marquee>
<h1 class="header h1" style="margin: 20px 0; line-height: 40px; font-family: Helvetica,Arial,sans-serif; color: #9400D3;">Explore the world of email! 💌</h1>
</marquee>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table>
<div style="display:none; white-space:nowrap; font-size:15px; line-height:0;"> </div>
</body>
</html>
This causes improper syntax which email clients will not render the second <head> element with content in it.
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
<svelte:head> creates duplicate elements on hydration #1607
When hydrating SSR-generated Svelte components, the svelte:head component creates duplicate elements. This seems to be true for all elements ...
Read more >Compiling C project results in duplicate symbols because of ...
I am trying to compile a C project that I wrote, and a header file has some constant variables. Two .c files are...
Read more >Linker complains about duplicate definition. - NXP Community
Hi, I'm having trouble with a global variable being defined in a header file and hen being called from two different .C files....
Read more >7 Survival Bugs/Glitches in 1.19+ Minecraft! (ANY ... - YouTube
Itsmejames #SimplySurvival #yhyh in todays video i show you 7 Survival Bugs /Glitches in 1.19+ Minecraft! (ANY ITEM Duplication ,NEW ILLEGAL ...
Read more >Resolving Schematic Errors | Learn Altium Designer
Components containing duplicate sub-parts ... Reported in the Messages panel as an Error ·. ... This error happens when one sub-part of a...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

This is in fact a feature, not a bug 😃
It’s meant to trick the Yahoo! app, as this client will strip out the first
<head>tag it finds, thus removing the CSS and completely breaking the layout. Feeding it an empty one first will trick it into removing that, while keeping the actual<head>that the framework uses.I’ve tested this myself and it doesn’t cause any problems in any of the major email clients. Have you tested and found one that is affected by this hack?
Yup, Litmus Builder bug, works fine in Email on Acid’s editor, as well as in the browser and major email clients that I’ve tested 😃