How to edit Markdown
Markdown uses short plain text markers to create headings, lists, links, and other formatting. You can create a new .md file or edit an existing one in Champ Mode, then switch to Read to preview the result.
A simple Markdown example
# Project notes
A short introduction with a **bold** phrase.
## Next steps
- Review the draft
- Send feedback
[Visit the project](https://example.com)
# creates the main heading; ## creates a section heading; - begins a list item; **text** makes text bold. Link text goes in square brackets followed by the URL in parentheses.
Edit and preview with dotMD Champ
- Open a .md file or choose New .md file in Champ Mode.
- Unlock Champ Mode and select Edit. Change the Markdown source in the editor.
- Select Read to see the formatted result. Return to Edit to make more changes.
- Select Save to download the updated .md file, or Export for Word or PDF.
Save your work: Drafts are saved locally on this device and can be restored when you return. Use Save to download a permanent .md copy. Clearing browser data or using another device will remove local drafts.
Common formatting fixes
- Leave a blank line before a heading, list, or table if adjacent text is not formatting as expected.
- Use a space after heading markers, such as
## Notes. - Use three backticks before and after a block of code to preserve spacing.
Start from scratch? Create a new .md file. Next: Format a Markdown table.