Skip to content

Commit b28276f

Browse files
committed
fix: Add escape sequence to generate html pages
It was a fix within deploy.py
1 parent 1692ef7 commit b28276f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/deploy/deploy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def __init__(self, relDic):
8484
self.tail = self.TailText
8585

8686
class RelLog(Release):
87-
HeaderText = "/**\n\page changelog Release Notes\n\n\\tableofcontents\n\n"
87+
HeaderText = "/**\n\\page changelog Release Notes\n\n\\tableofcontents\n\n"
8888
TailText = "\n*/"
8989
MsgType = {"new": '\\new',
9090
"bugfix": '\\bugfix',
@@ -99,7 +99,7 @@ def __init__(self, relDic):
9999

100100
def section(self):
101101
verCode = self.version.split('.')
102-
line = "\section rkhVer_"
102+
line = "\\section rkhVer_"
103103
line += "{0:s}_{1:s}_{2:s} ".format(verCode[0], verCode[1], verCode[2])
104104
line += "Version {}\n".format(self.version)
105105
return line

0 commit comments

Comments
 (0)