pub fn render_as_content_for(
value: &ValueWord,
_adapter: &str,
_caps: &RendererCapabilities,
) -> ContentNodeExpand description
Render a ValueWord value as a ContentNode with adapter-specific dispatch.
Dispatch order:
- ContentFor
→ adapter-specific rendering (future: user-defined impls) - Content → generic content rendering via
render_as_content - Display fallback → plain text
The caps parameter provides renderer capabilities so the Content impl
can adapt output (e.g., use ANSI codes only when caps.ansi is true).