Semantic mapping
Headings, paragraphs, emphasis, links, lists, quotes, and code map better than layout
Simple article content usually converts predictably. Div-based layouts, forms, tables, media, custom data attributes, embedded styles, and interactive elements may be simplified or kept as raw HTML. Review heading levels and list nesting, because visual indentation in source HTML does not always express the intended document outline.
Dialect
Markdown output depends on the parser and destination conventions
ATX versus setext headings, fenced versus indented code, bullet symbols, tables, task lists, footnotes, and raw HTML support vary among CommonMark, GitHub-flavored Markdown, static-site generators, and CMS platforms. Test the result in the actual destination rather than only the local preview.
Security
Rendered Markdown becomes HTML and must be sanitized when input is untrusted
Markdown can contain links, images, and sometimes raw HTML. Sanitizing a preview reduces some risks but does not automatically make every URL scheme, embedded asset, or destination safe. Use the platform's established renderer, sanitizer, Content Security Policy, and link handling for user-generated content.