True for block-level tokens, false for inline tokens.
(self)
| 323 | |
| 324 | @property |
| 325 | def block(self) -> bool: |
| 326 | """True for block-level tokens, false for inline tokens.""" |
| 327 | return self._attribute_token().block |
| 328 | |
| 329 | @property |
| 330 | def hidden(self) -> bool: |
nothing calls this directly
no test coverage detected