Overview

Tables in GitHub-Flavored Markdown (GFM) — the same syntax Obsidian renders in reading view.

How you write it in Obsidian

| Name  | Value |
|:------|------:|
| Alpha | 1     |
| Beta  | 2     |

What Obsitex generates

A tabular environment. The exact look is driven by your Document Design Settings (DDS) — whether horizontal rules (\hline) and vertical rules (|) are drawn, the default alignment, and the surrounding environment.

\begin{table}[h]
 \centering
 \begin{tabular}{|l|r|}
 \hline
Name & Value \\
\hline
Alpha & 1 \\
\hline
Beta & 2 \\
\hline
 \end{tabular}
\end{table}

How it looks in the PDF

<aside> 📸

Screenshot needed: the compiled PDF of the table above — a two-column grid, the "Value" column right-aligned.

</aside>

Tips & pitfalls