> ## Content Index
> Fetch the complete content index at: https://blog.nedharrison.net/llms.txt
> Use this file to discover other available public pages before exploring further.

# Quick post relative to Notes
- URL: https://blog.nedharrison.net/quick-post-relative-to-notes/
- Published: 2026-09-17T15:20:03.000Z
- Updated: 2026-09-18T04:03:20.000Z
- Author: Ned Harrison
- Tags: notes

# Heading 1

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6

This is a normal paragraph with **bold text**, *italic text*, ***bold + italic***, ~~strikethrough~~, andhighlighted text.

You can also use **alternative bold** and *alternative italic*.

Superscript: E = mc2  
Subscript: H2O

### Links

- Inline link: [Ghost Documentation](https://ghost.org/help/?ref=blog.nedharrison.net)
- Link with title: [Ghost](https://ghost.org/?ref=blog.nedharrison.net)
- Automatic link: [https://ghost.org](https://ghost.org/?ref=blog.nedharrison.net)
- Reference-style link: [Ghost Forum](https://forum.ghost.org/?ref=blog.nedharrison.net)

### Images

![Ghost logo](https://static.ghost.org/v5.0.0/images/ghost-orb-1.png "Ghost logo")

### Lists

**Unordered list**

- Item one
- Item two
  - Nested item (works best inside Markdown card)
  - Another nested item
- Item three

**Ordered list**

1. First step
2. Second step
  1. Nested ordered item
  2. Another nested ordered item
3. Third step

**Mixed list**

- Main point
  1. Sub-point A
  2. Sub-point B
- Another main point

### Blockquotes

> This is a simple blockquote.

> Nested blockquotes work inside the Markdown card:This is a nested quote.

### Horizontal rule

---

### Code

Inline code: `const greeting = "Hello Ghost";`

Fenced code block with syntax highlighting:

```javascript
// Example JavaScript
function greet(name) {
  return `Hello, ${name}! Welcome to Ghost 6.0`;
}

console.log(greet("Writer"));

```

```python
# Example Python
def greet(name):
    return f"Hello, {name}! Welcome to Ghost 6.0"

print(greet("Writer"))

```

### Tables (Markdown card only)

| Feature          | Inline Editor | Markdown Card |
| ---------------- | ------------- | ------------- |
| Headings         | ✅             | ✅             |
| Bold / Italic    | ✅             | ✅             |
| Nested lists     | ❌             | ✅             |
| Tables           | ❌             | ✅             |
| Footnotes        | ❌             | ✅             |
| Syntax highlight | ✅             | ✅             |

### Footnotes (Markdown card only)

Ghost supports footnotes.\[1\] You can also use longer notes.\[2\]

### HTML (allowed)

You can also drop raw HTML when needed:

**Custom HTML block** – useful for special layouts or third-party widgets.

---

**Quick tip for Ghost 6.0**  
Most everyday formatting (bold, italic, headings, links, simple lists, code, images) works when you type Markdown directly.  
For **tables**, **nested lists**, and **footnotes**, always use a dedicated **Markdown card** (`/markdown`).

---

1. This is a short footnote. ↩︎
2. This is a longer footnote that can contain multiple paragraphs.Indent the paragraphs with four spaces (or a tab) to keep them inside the footnote.You can even include `inline code` or other Markdown. ↩︎