84 class MermaidExtension(Extension): |
84 class MermaidExtension(Extension): |
85 """ |
85 """ |
86 Class implementing a Markdown Extension for Mermaid. |
86 Class implementing a Markdown Extension for Mermaid. |
87 """ |
87 """ |
88 |
88 |
89 def extendMarkdown(self, md, md_globals): |
89 def extendMarkdown(self, md, md_globals): # noqa: U100 |
90 """ |
90 """ |
91 Public method to register the extension. |
91 Public method to register the extension. |
92 |
92 |
93 @param md reference to markdown |
93 @param md reference to markdown |
94 @param md_globals global config parameters |
94 @param md_globals global config parameters |