Render inline AST nodes to plain text (links become their text).
(children: list[SyntaxTreeNode])
| 99 | |
| 100 | |
| 101 | def render_inline_text(children: list[SyntaxTreeNode]) -> str: |
| 102 | """Render inline AST nodes to plain text (links become their text).""" |
| 103 | return _render_inline(children, html=False) |
| 104 | |
| 105 | |
| 106 | # --- AST helpers ------------------------------------------------------------- |