Markdown Guide

Everything you need to write well-formatted notes in Andromeda.

What is Markdown?

Markdown is a lightweight syntax that lets you format plain text using simple symbols. Andromeda renders your notes as beautiful, formatted content — no HTML needed.


Headings

Use # symbols to create headings. More # = smaller heading.

# Heading 1
## Heading 2
### Heading 3
#### Heading 4

Emphasis

**Bold text**
*Italic text*
***Bold and italic***
~~Strikethrough~~

Bold text · Italic text · Bold and italic · Strikethrough


Lists

Unordered list

- Item one
- Item two
  - Nested item
  - Another nested item
- Item three

Ordered list

1. First step
2. Second step
3. Third step
  1. First step
  2. Second step
  3. Third step

Task list (checkboxes)

- [x] Completed task
- [ ] Pending task
- [ ] Another task

Links

[Link text](https://example.com)

Link text


Images

![Alt text](https://via.placeholder.com/400x200)

Blockquotes

Use > at the start of a line to create a quote.

> "The secret of getting ahead is getting started."
> — Mark Twain

"The secret of getting ahead is getting started." — Mark Twain


Code

Inline code

Wrap text in backticks for inline code.

Use `console.log()` to debug.

Code blocks

Use triple backticks and optionally add the language for syntax highlighting.

```javascript
function greet(name) {
  return `Hello, ${name}!`;
}

```javascript
function greet(name) {
  return `Hello, ${name}!`;
}

Supported languages include: javascript, typescript, python, bash, json, css, html, and many more.


Tables

| Column A | Column B | Column C |
|----------|----------|----------|
| Row 1    | Data     | More     |
| Row 2    | Data     | More     |
Column AColumn BColumn C
Row 1DataMore
Row 2DataMore

Use : to align columns:

| Left | Center | Right |
|:-----|:------:|------:|
| A    |   B    |     C |
LeftCenterRight
ABC

Horizontal Rule

Use three or more dashes, asterisks, or underscores on their own line.

---

Tips for Better Notes

Back to Home