Attention is currently required from: Nicholas Chin.
Hello Nicholas Chin,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/81503?usp=email
to review the following change.
Change subject: [RFC] doc/getting_started: Update embedded-table examples ......................................................................
[RFC] doc/getting_started: Update embedded-table examples
Since commit 35599f9a6671 (Docs: Replace Recommonmark with MyST Parser), `{eval-rst}' is used instead of `eval_rst' for embedded rST.
Change-Id: I1b0d0b029fd527e0e18c71371806cd248ea0ecdf Signed-off-by: Nico Huber nico.h@gmx.de --- M Documentation/getting_started/writing_documentation.md 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/03/81503/1
diff --git a/Documentation/getting_started/writing_documentation.md b/Documentation/getting_started/writing_documentation.md index 51ea531..b9c30b0 100644 --- a/Documentation/getting_started/writing_documentation.md +++ b/Documentation/getting_started/writing_documentation.md @@ -99,7 +99,7 @@ Under Sphinx markdown tables are not supported. Therefore you can use following code block to write tables in reStructuredText and embed them into the markdown:
- ```eval_rst + ```{eval-rst} +------------+------------+-----------+ | Header 1 | Header 2 | Header 3 | +============+============+===========+ @@ -144,7 +144,7 @@ You can import CSV files and let sphinx automatically convert them to human readable tables, using the following reStructuredText snipped:
- ```eval_rst + ```{eval-rst} .. csv-table:: :header: "Key", "Value" :file: keyvalues.csv