Append inner-content elements for `text` to the `w:r` element.
(self, text: str)
| 279 | appender.add_text(text) |
| 280 | |
| 281 | def add_text(self, text: str): |
| 282 | """Append inner-content elements for `text` to the `w:r` element.""" |
| 283 | for char in text: |
| 284 | self.add_char(char) |
| 285 | self.flush() |
| 286 | |
| 287 | def add_char(self, char: str): |
| 288 | """Process next character of input through finite state maching (FSM). |
no test coverage detected