Adds `dictionary` to our glossary. Any abbreviations that already exist will be overwritten.
(self, dictionary: dict[str, str])
| 64 | self.glossary.clear() |
| 65 | |
| 66 | def load_glossary(self, dictionary: dict[str, str]): |
| 67 | """Adds `dictionary` to our glossary. Any abbreviations that already exist will be overwritten.""" |
| 68 | if dictionary: |
| 69 | self.glossary = {**dictionary, **self.glossary} |
| 70 | |
| 71 | def extendMarkdown(self, md): |
| 72 | """ |
no outgoing calls