From: Jason Ish Date: Mon, 21 Sep 2020 20:42:04 +0000 (-0600) Subject: doc: disable default code formatting for code blocks X-Git-Tag: 1.2.0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=048c42e2f034f5e3b7b3a57a5b19baa54f3ba199;p=thirdparty%2Fsuricata-update.git doc: disable default code formatting for code blocks Code blocks were by default being highlighted as Python, but for Suricata-Update most code blocks are command lines, so disable language highlighting by default. --- diff --git a/doc/conf.py b/doc/conf.py index c6e9a75..b779bc9 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -243,3 +243,5 @@ texinfo_documents = [ # How to display URL addresses: 'footnote', 'no', or 'inline'. #texinfo_show_urls = 'footnote' + +highlight_language = "none"