summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Hieber <r.hieber@pengutronix.de>2018-07-25 16:18:10 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2018-08-08 08:54:54 +0200
commit3034e8d84caa542960e05589c327a6550bc16a4c (patch)
tree8c7a8799c39c382f6c2c13cbc3daf79896103281
parent79b5e51cf887d1c246b02161b316f8e6d8b9a0dc (diff)
downloadbarebox-3034e8d84caa542960e05589c327a6550bc16a4c.tar.gz
barebox-3034e8d84caa542960e05589c327a6550bc16a4c.tar.xz
Documentation: don't highlight literal blocks as shell script
There are multiple cases in the documentation where literal blocks are used for literal, preformatted text. Although it is possible to use `.. code-block: none` in these cases instead of literal `::` blocks, follow the principle of least surprise and don't apply any syntax highlighting at all for literal blocks. Signed-off-by: Roland Hieber <r.hieber@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--Documentation/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py
index dbd4a80ca..ec6ec0470 100644
--- a/Documentation/conf.py
+++ b/Documentation/conf.py
@@ -259,4 +259,4 @@ texinfo_documents = [
# If true, do not generate a @detailmenu in the "Top" node's menu.
#texinfo_no_detailmenu = False
-highlight_language = 'sh'
+highlight_language = 'none'