Lesson 6
Markdown Writing Workflow
Review heading structure, links, tables, and common Markdown mistakes before publishing.
Before publishing Markdown to GitHub, a docs repo, or a CMS field, run a short review pass.
A practical workflow
- Draft the document in Markdown.
- Preview the rendered output.
- Check the heading outline for skipped levels or missing sections.
- Review the link list for broken or placeholder URLs.
- Verify tables, code blocks, and task lists render correctly.
- Copy Markdown for Git-based destinations, or copy HTML for CMS/email paths.
Common Markdown mistakes
- Skipped heading levels: jumping from
#to###without a## - Broken lists: missing blank lines before lists in some renderers
- Unclosed fenced code blocks: forgetting the closing backticks
- Table alignment noise: adding rows with inconsistent column counts
- Placeholder links: leaving
https://example.comin final docs - Overusing HTML: relying on raw HTML when Markdown syntax would be clearer
Structure checks matter more than styling
Markdown quality is mostly about:
- scan-friendly headings
- short paragraphs
- explicit links
- working code samples
- tables that match the data shape
Preview theme colors do not travel with the document. Structure does.
Key takeaway
Treat Markdown review like a lightweight docs QA step: preview, inspect structure, validate links, then choose the right export format for the destination.
The Markdown Preview / Markdown to HTML tool supports this workflow with live preview, heading outline, link list, and copy actions in one workspace.