diff --git a/etgtools/sphinx_generator.py b/etgtools/sphinx_generator.py
index 27019da6..ec8f7d9a 100644
--- a/etgtools/sphinx_generator.py
+++ b/etgtools/sphinx_generator.py
@@ -2893,7 +2893,7 @@ class XMLDocString(object):
pickleItem(desc, self.current_module, self.class_name, 'class')
if self.overloads:
- docstrings += '\n\n%s|overload| Overloaded Implementations:\n\n'%spacer
+ docstrings += '\n\n%s|overload| **Overloaded Implementations:**\n\n'%spacer
docstrings += '%s:html:`
`\n\n'%spacer
for index, over in enumerate(self.overloads):
diff --git a/sphinxtools/postprocess.py b/sphinxtools/postprocess.py
index 43848fca..e61ac73f 100644
--- a/sphinxtools/postprocess.py
+++ b/sphinxtools/postprocess.py
@@ -669,9 +669,6 @@ def postProcess(folder, options):
with textfile_open(filename, "rt") as fid:
orig_text = text = fid.read()
- text = text.replace('Overloaded Implementations:',
- 'Overloaded Implementations:')
-
for item in HTML_REPLACE:
if item in ('class', 'py class'):
continue