Markdown #
romero uses markdown for formatting content. Markdown is a popular markup syntax that’s widely known for its simplicity. romero supports it as a keyboard-friendly way to write rich and structured text.
Text formatting #
| Formatting | Markdown version | Result |
|---|---|---|
| Bold | **bold** |
bold |
| Italic | _italic_ |
italic |
| Strikethrough | ~strikethrough |
|
| Inline code | `code` |
code |
Titles #
- Heading 1:
# A first-level title - Heading 2:
## A second-level title - Heading 3:
## A third-level title
Code blocks #
``` creates a new code block
```python creates a new code block with Python syntax highlighting
Lists #
- Begin a line with
-or*to start un unordered list. - Begin a line with
1.to start a numbered list - Begin a line with
- [ ]to start a task list
Quotes #
Begin a line with > to create a block quote.
This is a block quote
Dividers #
Type --- to create a divider
This is an example of a divider.
100%