@@ -21,7 +21,6 @@ table {
}
table tr, th, td {
border: 1px solid black;
- word-wrap: break-word;
}
img {
@@ -62,12 +62,16 @@ table {
margin-left: auto;
margin-right: auto;
width: 95%;
- table-layout: fixed;
/* combine table borders when they are adjacent */
border-collapse: collapse;
+ /* TODO: once we finish the HTML->Markdown conversion we should
+ * revaluate the 'table-layout: fixed' hack below */
+ table-layout: fixed;
}
table tr, th, td {
border: 1px solid black;
+ /* TODO: once we finish the HTML->Markdown conversion we should
+ * revaluate the 'word-wrap: break-word' hack below */
word-wrap: break-word;
}
Better identify, and tweak, some of the table layout hacks so that we know to revisit them later once we have fully converted to markdown. Signed-off-by: Paul Moore <paul@paul-moore.com> --- src/styles_html.css | 1 - src/styles_pdf.css | 6 +++++- 2 files changed, 5 insertions(+), 2 deletions(-)