pub fn markdown_to_comment_blocks(body: &str) -> Vec<CommentBlock>Expand description
Convert a markdown comment body into ClickUp’s comment rich-text array.
The supported subset:
- fenced code blocks (
```) → each line + acode-blocknewline; -/*/+bullets → content + abulletlist newline;- [ ]/- [x]task items → content + anunchecked/checkednewline;1.ordered items → content + anorderedlist newline;- ATX headings (
#..######) → bold content + a leading glyph (no heading mark); - GFM tables → an aligned monospace
code-block(comments have no table mark); >blockquotes and---horizontal rules;- inline
`code`,**bold**,*italic*, and[text](url)links; - everything else → plain text.