summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-03-17 18:40:54 (GMT)
committerGitHub <noreply@github.com>2019-03-17 18:40:54 (GMT)
commit3670a15114ca140a9251dc4abe8bfff58e63b2a0 (patch)
tree5950a146bee5a291e5a9743f43fed5efdef0339a /doc
parent73dd780d670f5aa584ac7d00cfc2689bfe796634 (diff)
parentbf1e768aa86ac5cbca5de4510469dd98334973df (diff)
downloadDoxygen-3670a15114ca140a9251dc4abe8bfff58e63b2a0.zip
Doxygen-3670a15114ca140a9251dc4abe8bfff58e63b2a0.tar.gz
Doxygen-3670a15114ca140a9251dc4abe8bfff58e63b2a0.tar.bz2
Merge pull request #6784 from albert-github/feature/issue_6781_2
issue #6781 Unable to use math in markdown table headers
Diffstat (limited to 'doc')
-rw-r--r--doc/translator.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/translator.py b/doc/translator.py
index 2246c08..ed001bb 100644
--- a/doc/translator.py
+++ b/doc/translator.py
@@ -1821,9 +1821,9 @@ class TrManager:
tplDic['numLangStr'] = str(self.numLang)
# Define templates for HTML table parts of the documentation.
- htmlTableTpl = '''\
+ htmlTableTpl = '''
\\htmlonly
- </p>
+ </p>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr bgcolor="#000000">
<td>
@@ -1842,7 +1842,7 @@ class TrManager:
</td>
</tr>
</table>
- <p>
+ <p>
\\endhtmlonly
'''
htmlTableTpl = textwrap.dedent(htmlTableTpl)