Just add the text, ignore position for now.
(self, bs, box, align=None)
| 341 | # Compatible component support |
| 342 | |
| 343 | def textBox(self, bs, box, align=None): |
| 344 | """Just add the text, ignore position for now.""" |
| 345 | self.div() |
| 346 | self.addHtml(str(bs)) |
| 347 | self._div() |
| 348 | |
| 349 | text = textBox |
| 350 |