yarle-evernote-to-md
Version:
Yet Another Rope Ladder from Evernote
43 lines (40 loc) • 1.01 kB
text/typescript
export const generateHtmlContent = (options: any) => {
return `
<head>
<title>${options.title}</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<style>
body {
padding: 1em;
color: #080808;
background-color: #f8f8f8;
}
body, td, th {
font-family: ${options.fontFamily};
font-size: ${options.fontSize};
}
table.meta {
margin-bottom: 3em;
border-collapse: collapse;
}
table.meta th {
text-align: left;
}
table.meta th, table.meta td {
padding: 2pt 4pt;
background-color: #D4DDE5;
border: 1px solid #444444;
font-size: 10pt;
}
</style>
</head>
<body>
<h1>${options.title}</h1>
<div>
<table class="meta">${options.metaTable}
</table>
${options.content}
</body>
</html>`;
};