Markdown itself has no centering syntax. This raw HTML works only when the reader accepts and preserves it. Some apps sanitize or ignore the HTML or the align attribute.
HTML
Comments
Visible paragraph.
<!-- This note is hidden in many renderers. -->
Another visible paragraph.
Visible paragraph.
Another visible paragraph.
Markdown has no dedicated comment syntax. HTML comments are common, but HTML filtering and export behavior vary.
Put it together
A complete project note in plain Markdown.
This example combines portable structure with clearly marked GFM task syntax. It remains readable even in an editor that does not render every extension.
Copyable note
launch-checklist.md
# Launch checklist
**Goal:** Publish a useful guide without losing accuracy.
## Before publishing
- [x] Check the primary sources
- [x] Test every example
- [ ] Review the mobile layout
- [ ] Confirm the canonical URL
## Notes
> The page should be useful before it asks for anything.
Read the [CommonMark specification](https://spec.commonmark.org/)
and the [GFM specification](https://github.github.com/gfm/).
```sh
npm test
```
---
Updated: 2026-08-11
Rendered preview
Launch checklist
Goal: Publish a useful guide without losing accuracy.
Before publishing
Check the primary sources
Test every example
Review the mobile layout
Confirm the canonical URL
Notes
The page should be useful before it asks for anything.
Core CommonMark syntax is the safest foundation when a file needs to move between apps. Extensions can still be useful. The important part is knowing when you are using one.
Portable core
CommonMark
Headings and paragraphs
Emphasis and strong emphasis
Links and images
Blockquotes and lists
Inline and fenced code
Hard line breaks and thematic breaks
Common extensions
GitHub Flavored Markdown
Tables
Task-list items
Strikethrough
Extended autolinks
Filtering of some raw HTML
Check the destination
Renderer-specific features
Wikilinks such as [[Note]]
Automatic tables of contents
Heading anchor rules
Footnotes, callouts and diagrams
Raw HTML and HTML comments
Frontmatter interpretation
Worth knowing
There is no universal Markdown table-of-contents command.
Some apps generate a table of contents from headings. A manual version uses ordinary links, but the heading anchor must match the renderer that will display the file. GitHub, static-site tools and note apps can generate those anchors differently.
Markdown began as an informal syntax. CommonMark provides a precise specification for a portable core. Dialects such as GitHub Flavored Markdown add features including tables, task lists, strikethrough and autolinks.
How do I make a new line in Markdown?
Use a blank line to start a new paragraph. For a hard line break inside the same paragraph, end the line with two or more spaces or a backslash, then press Enter. Outside CommonMark, a particular renderer may apply different soft-break behavior.
Are Markdown tables and checkboxes standard?
Tables and task-list checkboxes are not part of core CommonMark. They are GitHub Flavored Markdown extensions supported by many modern editors, including Ariv. Check the destination if the file must move between different renderers.
How do I add comments in Markdown?
Markdown has no dedicated comment syntax. Many renderers accept HTML comments such as <!-- hidden note -->. Sanitizing renderers may remove or display raw HTML differently, so treat comments as renderer-dependent.
How do I center text in Markdown?
Markdown has no portable centering syntax. Some readers accept raw HTML, so <p align="center">Centered text</p> may work. Treat it as renderer-dependent because an app may sanitize, ignore or display the HTML differently.
How do I create a Markdown table of contents?
Core Markdown has no automatic table-of-contents syntax. Some apps generate one from headings. A portable manual table of contents uses normal links whose targets match the heading anchors created by the destination renderer.
Use Markdown for real work
Keep the format simple. Add the workspace when you need it.
Ariv works directly with a folder of Markdown files and builds search, tasks, Kanban, daily notes and optional AI around them. The files remain readable outside the app.
Your Markdown can stay plain without staying basic.
Open a folder of Markdown files in Ariv and add capture, search, tasks, Kanban, backlinks and optional AI without converting the notes into a proprietary format.