diff --git a/docs/sphinx/_templates/layout.html b/docs/sphinx/_templates/layout.html index 3ce43652..dcf4cb0f 100644 --- a/docs/sphinx/_templates/layout.html +++ b/docs/sphinx/_templates/layout.html @@ -7,7 +7,7 @@ {% block rootrellink %} -
  • +
  • Home
  • Search
  • Gallery
  • diff --git a/sphinxtools/postprocess.py b/sphinxtools/postprocess.py index f481ecc4..d47ed8ff 100644 --- a/sphinxtools/postprocess.py +++ b/sphinxtools/postprocess.py @@ -148,7 +148,9 @@ def BuildEnumsAndMethods(sphinxDir): text = text.replace('See also\n', '.. seealso:: ') # Avoid Sphinx warnings on wx.TreeCtrl text = text.replace('**( `', '** ( `') - + # Replace EmptyString stuff + text = text.replace('EmptyString', "''") + if text != orig_text: fid = open(input, 'wt') fid.write(text)