Meta Description" name="description" />
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0; /* Reset margin */
}
h1 {
text-align: center;
font-size: 24px;
margin-bottom: 20px;
color: black;
}
.logo {
display: block;
margin: 10px auto;
max-width: 100px;
max-height: 50px;
object-fit: contain;
}
.source-link {
margin-top: 20px;
border-top: 1px solid #e0e0e0;
padding-top: 10px;
font-size: 12px;
}
.source-link a {
color: #1a73e8;
text-decoration: none;
word-break: break-word;
}
.source-link a:hover {
text-decoration: underline;
}
.page-break {
page-break-after: always; /* Ensure specific sections start on new pages */
}
</style>
</head>
<body>
<img src="${svgIconUrl}" alt="Logo" class="logo" />
<h1>${pageHtmlContent.title}</h1>
${
pageHtmlContent?.subHeading &&
pageHtmlContent.subHeading.trim() !== ""
? `
<h2>${t("Table of contents")}</h2>
<ol>${pageHtmlContent.subHeading}</ol>`
: ""
}
${contentWithLinks}
<div class="source-link">
<p>
<strong>${t("source")}:</strong>
<a href="${shortLink}" target="_blank" rel="noopener noreferrer">
${shortLink}
</a>
</p>
</div>
<img src="${svgIconUrl}" alt="Logo" class="logo" />
</body>
</html>2
1
2KB
3KB
154.0ms
212.0ms
155.0ms