From 27551cbb4d8df81e8516b21b1bd85ee56b92b1ea Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Wed, 23 May 2018 11:53:00 -0700 Subject: Fix ReadTheDocs build due to c2rst. --- docs/c2rst.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/c2rst.py b/docs/c2rst.py index 9ca8bc1bb..904fb7408 100644 --- a/docs/c2rst.py +++ b/docs/c2rst.py @@ -7,6 +7,7 @@ class CStrip(sphinx.parsers.Parser): def parse(self, inputstring, document): # This setting is missing starting with Sphinx 1.7.1 so we set it ourself. document.settings.tab_width = 4 + document.settings.character_level_inline_markup = False stripped = [] for line in inputstring.split("\n"): line = line.strip() -- cgit v1.2.3