updated format and section id

This commit is contained in:
2026-01-29 17:54:04 -07:00
parent f570424dcb
commit 994a3597bb
2 changed files with 74 additions and 56 deletions
+57 -43
View File
@@ -1,51 +1,65 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{ name }}</title>
<style>
@page {
size: letter;
margin: 0.5in;
}
body {
font-family: Arial, sans-serif;
max-width: 100ch; /* 100 characters max width */
margin: 0 auto;
padding: 20px;
line-height: 1.6;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
th, td {
text-align: left;
padding: 8px;
border-bottom: 1px solid #ddd;
vertical-align: top;
}
ul {
padding-left: 20px;
}
li {
margin-bottom: 5px;
}
.section {
margin-bottom: 20px;
}
.section h2 {
border-bottom: 2px solid #333;
padding-bottom: 5px;
}
</style>
<meta charset="UTF-8">
<title>{{ name }}</title>
<style>
@page {
size: letter;
margin: 0.5in;
}
body {
font-family: Arial, sans-serif;
max-width: 100ch;
/* 100 characters max width */
margin: 0 auto;
padding: 20px;
line-height: 1.6;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
table {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
margin: 20px 0;
}
th,
td {
text-align: left;
padding: 8px;
border-bottom: 1px solid #ddd;
vertical-align: top;
}
ul {
padding-left: 20px;
}
li {
margin-bottom: 5px;
}
.section {
margin-bottom: 20px;
}
.section h2 {
border-bottom: 2px solid #333;
padding-bottom: 5px;
}
</style>
</head>
<body>
{{ content }}
</body>
</html>