Hello.
I want to generate this html with Hugo.
<html>
<head>
<title><%TemplateTag%></title>
</head>
</html>
So I just wrote the above code to single.html
of layouts
folder.
Then title’s <
changed to <
.
<html>
<head>
<title><%TemplateTag%></title>
</head>
</html>
I also tried {{ "<" | safeHTML }}
but I got same result.
How to generate it correctly?
Thanks.