summaryrefslogtreecommitdiff
path: root/makespec.py
diff options
context:
space:
mode:
Diffstat (limited to 'makespec.py')
-rw-r--r--makespec.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/makespec.py b/makespec.py
index 9b5d523..84663f2 100644
--- a/makespec.py
+++ b/makespec.py
@@ -132,6 +132,8 @@ elif specformat == "html":
result = re.sub(r'␣', '<span class="space"> </span>', result)
result = re.sub(r'<h([1-6])><a id="([^\"]*)"><\/a> ',
"<h\\1 id=\"\\2\">", result)
+ # put plural s inside links for better visuals:
+ result = re.sub(r'<\/a>s', "s</a>", result)
sys.stdout.write(template.substitute(metadata, body=result))
# check for errors: