Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/83117?usp=email )
(
4 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: documentation: Fix evaluation of reStructuredText ......................................................................
documentation: Fix evaluation of reStructuredText
eval_rst isn't a valid directive. Use eval-rst instead. Also, add curly braces where necessary since the MyST parser requires them.
Change-Id: I68337354e9bd4de4b2c29d4e42c3bb22337fbe06 Signed-off-by: Felix Singer felixsinger@posteo.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/83117 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Angel Pons th3fanbus@gmail.com Reviewed-by: Nicholas Chin nic.c3.14@gmail.com --- M Documentation/getting_started/writing_documentation.md M Documentation/mainboard/hp/8560w.md M Documentation/mainboard/hp/pro_3500_series.md 3 files changed, 6 insertions(+), 6 deletions(-)
Approvals: Nicholas Chin: Looks good to me, approved Angel Pons: Looks good to me, approved build bot (Jenkins): Verified
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 diff --git a/Documentation/mainboard/hp/8560w.md b/Documentation/mainboard/hp/8560w.md index babd632..103d912 100644 --- a/Documentation/mainboard/hp/8560w.md +++ b/Documentation/mainboard/hp/8560w.md @@ -17,7 +17,7 @@
![8560w_chip_location](8560w_flash.webp)
-```eval_rst +```{eval-rst} +---------------------+------------+ | Type | Value | +=====================+============+ @@ -61,7 +61,7 @@
## Technology
-```eval_rst +```{eval-rst} +------------------+--------------------------------------------------+ | Northbridge | :doc:`../../northbridge/intel/sandybridge/index` | +------------------+--------------------------------------------------+ diff --git a/Documentation/mainboard/hp/pro_3500_series.md b/Documentation/mainboard/hp/pro_3500_series.md index 241b567..881bf37 100644 --- a/Documentation/mainboard/hp/pro_3500_series.md +++ b/Documentation/mainboard/hp/pro_3500_series.md @@ -14,7 +14,7 @@
## Flashing coreboot
-```{eval_rst} +```{eval-rst} +---------------------+-------------------------+ | Type | Value | +=====================+=========================+ @@ -82,7 +82,7 @@
## Technology
-```{eval_rst} +```{eval-rst} +------------------+--------------------------------------------------+ | Northbridge | :doc:`../../northbridge/intel/sandybridge/index` | +------------------+--------------------------------------------------+