We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f980d76 commit 964ab95Copy full SHA for 964ab95
docs/conf.py
@@ -238,7 +238,7 @@
238
#'pointsize': '10pt',
239
240
# Additional stuff for the LaTeX preamble.
241
-'preamble': '\DeclareUnicodeCharacter{00A0}{}',
+'preamble': r'\DeclareUnicodeCharacter{00A0}{}',
242
243
# Latex figure (float) alignment
244
#'figure_align': 'htbp',
tools/mkdoc.py
@@ -106,8 +106,8 @@ def process_comment(comment):
106
result = result2
107
108
# Doxygen tags
109
- cpp_group = '([\w:]+)'
110
- param_group = '([\[\w:\]]+)'
+ cpp_group = r'([\w:]+)'
+ param_group = r'([\[\w:\]]+)'
111
112
s = result
113
s = re.sub(r'\\c\s+%s' % cpp_group, r'``\1``', s)
0 commit comments