tsimport {Markdown} from '@astryxdesign/core/Markdown'
| Guidance | Practices |
|---|---|
| Do | Set headingLevelStart to match the page hierarchy, e.g. start at 3 if the markdown sits inside an h2 section. |
| Do | Use contentWidth to keep prose at a readable line length in wide layouts. |
| Do | Use inlinePlugins for custom shorthand patterns like issue refs, diff refs, and mentions instead of preprocessing the markdown string. |
| Don't | Use Markdown for hand-authored layouts; use Text and Heading directly when you control the content. |