r""" Do some necessary and/or useful substitutions for texts to be included in LaTeX documents.
(text)
| 87 | |
| 88 | |
| 89 | def _tex_escape(text): |
| 90 | r""" |
| 91 | Do some necessary and/or useful substitutions for texts to be included in |
| 92 | LaTeX documents. |
| 93 | """ |
| 94 | return text.replace("\N{MINUS SIGN}", r"\ensuremath{-}") |
| 95 | |
| 96 | |
| 97 | def _writeln(fh, line): |
no outgoing calls
no test coverage detected
searching dependent graphs…