1 parent 2a3635b commit 98eb64bCopy full SHA for 98eb64b
1 file changed
scripts/datamodel-doc/ALICEO2includeFile.py
@@ -167,11 +167,13 @@ def print(self):
167
def printHTML(self):
168
cn2u = fullDataModelName(self.nslevel, self.cname)
169
cn2u = cn2u.replace(":collision",":‌collision")
170
+ # replace < by < and > by >
171
+ ty2u = self.type.replace("<","<").replace(">",">")
172
print(" <tr>")
173
print(" <td>"+cn2u+"</td>")
174
print(" <td>"+columnTypes(1)[self.kind]+"</td>")
175
print(" <td>"+self.gname+"</td>")
- print(" <td>"+self.type+"</td>")
176
+ print(" <td>"+ty2u+"</td>")
177
print(" <td>"+self.comment+"</td>")
178
print(" </tr>")
179
0 commit comments