(self, content: str, name: BlockId = None, **kwargs)
| 25 | content: str |
| 26 | |
| 27 | def __init__(self, content: str, name: BlockId = None, **kwargs): |
| 28 | super().__init__(name, **kwargs) |
| 29 | self.content = content.strip() |
| 30 | |
| 31 | |
| 32 | class Text(EmbeddedTextBlock): |