Fix table display by converting to bullet lists

- Convert benchmark comparison table to bullet list format
- Convert technology comparison table to bullet list with pipe separators
- Add comprehensive table styling in CSS (prepared for future use)
- one.el backend (one-ox) does not support Org mode tables or HTML export blocks
- Workaround: use bullet lists which render correctly and maintain readability
This commit is contained in:
2025-12-27 10:08:29 +01:00
parent e6674a5ab3
commit 8d62de1f62
2 changed files with 35 additions and 14 deletions

View File

@@ -51,6 +51,33 @@ b {
font-weight: bold;
}
table {
width: 100%;
border-collapse: collapse;
margin: var(--gap-l) 0;
background-color: rgba(217, 217, 217, 0.05);
}
table thead {
background-color: var(--color-brown);
color: var(--color-black);
}
table th,
table td {
padding: var(--gap-s) var(--gap-m);
text-align: left;
border: 1px solid rgba(210, 158, 121, 0.3);
}
table tbody tr:hover {
background-color: rgba(217, 217, 217, 0.1);
}
table th {
font-weight: bold;
}
/* Components */
.container {