We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01a83e6 commit 61d4812Copy full SHA for 61d4812
codegen/core/src/main/java/software/amazon/smithy/python/codegen/writer/MarkdownConverter.java
@@ -170,8 +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
- // Handles: [ ] ' { } ( ) < > ` @ _ * | ! ~ $
174
- output = output.replaceAll("\\\\([\\[\\]'{}()<>`@_*|!~$])", "$1");
+ output = output.replaceAll("\\\\([\\[\\]'{}()<>`@_*|!~$#])", "$1");
175
176
// Replace <note> and <important> tags with admonitions for mkdocstrings
177
output = replaceAdmonitionTags(output, "note", "Note");
0 commit comments