I’m trying to keep the entire <head> section within a Content Fragment, so I created a dedicated CF and included it in the content template. However, after saving and reopening, the CF is automatically moved from the <head> tag to the <body> tag.
Before save,
<!DOCTYPE html>
<html data-qb-installed="true">
<head>
<meta charset="utf-8" />
{{fragment id='ajo:ce84ac85-7f5b-4385-84cf-f3c850da8140' mode='inline'}}
<header></header>
<div>test</div>
</body>
</html>
When I reopen the same,
<!DOCTYPE html>
<html data-qb-installed="true">
<head>
<meta charset="utf-8" />
</head>
<body class="is-html-mode" contenteditable="true">
{{fragment id='ajo:ce84ac85-7f5b-4385-84cf-f3c850da8140' mode='inline'}}
<header></header>
<div>test</div>
</body>
</html>
The inserted Content Fragment is being moved from the <head> tag to the <body> tag after saving. Is it not possible to insert a Content Fragment within the <head> section