From e3fd2102a7ebd9c03d7e42df0a87a3dbf4bf4fa3 Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Fri, 22 Sep 2023 22:24:05 +0200 Subject: [PATCH] docs: fix markdown table example the first table example (markup description) was wrong. Also makes the explanation of the non-supported table alignment in rst clearer in what it means for this docs section --- docs/user/markdown.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/user/markdown.rst b/docs/user/markdown.rst index 3f4028526..48703426b 100644 --- a/docs/user/markdown.rst +++ b/docs/user/markdown.rst @@ -533,11 +533,11 @@ As shown in the second table below, use of outside borders and neat alignment of **Markup**: :: - |Tables |Are |Very |Cool | - |------------------|:-------------:|-----:|:-------| - |col 2 is |centered |$12 |Gloves | - |col 3 is |right-aligned |$1600 |Necklace| - |col 4 is |left-aligned |$100 |Hat | + | Tables |Are |Very |Cool | + |-------------------|:-------------:|-----:|:-------| + | col 2 is |centered |$12 |Gloves | + | col 3 is |right-aligned |$1600 |Necklace| + | col 4 is |left-aligned |$100 |Hat | `Tables` |*Are* |Very |Cool ------------|:-------------:|-----:|:------- @@ -565,7 +565,7 @@ As shown in the second table below, use of outside borders and neat alignment of ================== ================= ======== ========== -**reST NOTE**: reST does not support cell alignment. +**reST NOTE**: reST does not support cell alignment, therefore the last example shown above does not reflect the resulting alignment. Syntax Highlighting of Preformatted Code ----------------------------------------