Tables & Logs
Tables
| Wanderer | Days Survived | Status |
|---|---|---|
| M.O. | 14 | Extracted |
| UNKNOWN | — | Missing |
<table class="data-table">
<tr><th>Wanderer</th><th>Days Survived</th><th>Status</th></tr>
<tr><td>M.O.</td><td>14</td><td>Extracted</td></tr>
<tr><td>UNKNOWN</td><td>—</td><td>Missing</td></tr>
</table>Log entry
Use the LogEntry component (src/components/LogEntry.astro) inside any MDX body.
[LOG-001] — Day 1, Wanderer callsign X
Log text describing what happened goes here.
Log text describing what happened goes here.
import LogEntry from "../../components/LogEntry.astro";
<LogEntry tag="[LOG-001]" date="Day 1, Wanderer callsign X">
Log text describing what happened goes here.
</LogEntry>Tag list
<div class="tags-list" style="justify-content: flex-start;">
<span>tag-one</span><span>tag-two</span><span>tag-three</span>
</div>
<!-- the footer's tag list is set via frontmatter instead: -->
tagsList: ["tag-one", "tag-two", "tag-three"]