← Overview
Tables in GitHub-Flavored Markdown (GFM) — the same syntax Obsidian renders in reading view.
| Name | Value |
|:------|------:|
| Alpha | 1 |
| Beta | 2 |
:--- left, :--: centered, ---: right.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}
<aside> 📸
Screenshot needed: the compiled PDF of the table above — a two-column grid, the "Value" column right-aligned.
</aside>
tabularx or longtable.