Fix building docs

I guess the root cause is https://sourceforge.net/p/docutils/bugs/353/

Change-Id: Iedbb6d41ff1a38549766a1ca7b779c86c41f2792
This commit is contained in:
Andrey Kurilin 2019-09-02 16:36:06 +03:00
parent 3c529c7c4f
commit 17d9b3e3c0
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ def include_var(name, rawtext, text, lineno, inliner, options=None,
obj = json.dumps(dict, indent=4)
else:
obj = str(obj)
return [nodes.Text(obj)], []
return [nodes.inline("", obj)], []
def setup(app):