We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2472785 commit e535606Copy full SHA for e535606
1 file changed
codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/MarkdownConverter.java
@@ -170,7 +170,7 @@ private static String postProcessPandocOutput(String output) {
170
171
// Remove unnecessary backslash escapes that pandoc adds for markdown
172
// These characters don't need escaping in Python docstrings
173
- output = output.replaceAll("\\\\([\\[\\]'{}()<>`@_*|!~$#])", "$1");
+ output = output.replaceAll("\\\\([\\[\\]'{}()<>`@_*|!~$#^])", "$1");
174
175
// Replace <note> and <important> tags with admonitions for mkdocstrings
176
output = replaceAdmonitionTags(output, "note", "Note");
0 commit comments