(state: StateCore)
| 192 | |
| 193 | |
| 194 | def smartquotes(state: StateCore) -> None: |
| 195 | if not state.md.options.typographer: |
| 196 | return |
| 197 | |
| 198 | for token in state.tokens: |
| 199 | if token.type != "inline" or not QUOTE_RE.search(token.content): |
| 200 | continue |
| 201 | if token.children is not None: |
| 202 | process_inlines(token.children, state) |
nothing calls this directly
no test coverage detected
searching dependent graphs…