Skip to main content

Notion

## Notion Editor Backup Instructions

Here's a comprehensive backup of key editor instructions, including JSON representation where applicable:

### 1. Basic Block Structure

```json
{
"blocks": {
"text": { "attributes": ["color"], "content": "inline + blocks" },
"h1": { "attributes": ["color"], "content": "inline" },
"h2": { "attributes": ["color"], "content": "inline" },
"h3": { "attributes": ["color"], "content": "inline" },
"uli": { "attributes": ["color"], "content": "inline + blocks" },
"oli": { "attributes": ["color"], "content": "inline + blocks" }
}
}
```

### 2. Interactive Elements

```json
{
"interactive": {
"toggle": {
"attributes": ["color", "size"],
"size_options": ["default", "h1", "h2", "h3"]
},
"todo": {
"attributes": ["checked", "color"],
"checked": "boolean"
}
}
}
```

### 3. Rich Content Blocks

```json
{
"rich_content": {
"callout": { "attributes": ["color"] },
"quote": { "attributes": ["color"] },
"code_block": { "attributes": ["language"] },
"math_block": {},
"columns": { "children": ["column"] },
"table": { "children": ["tr", "td"] }
}
}
```

### 4. Inline Formatting

```json
{
"inline": {
"basic": ["b", "i", "s", "u", "code"],
"links": {
"a": { "attributes": ["href"] }
},
"highlight": {
"h": { "attributes": ["color"] }
}
}
}
```

### 5. Mentions and References

```json
{
"mentions": {
"date": {
"formats": [
"mention-date",
"mention-datetime",
"mention-date-range",
"mention-datetime-range"
]
},
"references": [
"mention-page",
"mention-database",
"mention-person",
"mention-link"
]
}
}
```

### 6. Color System

```json
{
"colors": {
"basic": [
"default", "gray", "brown", "orange",
"yellow", "green", "blue", "purple",
"pink", "red"
],
"background": [
"default-background", "gray-background",
"brown-background", "orange-background",
"yellow-background", "green-background",
"blue-background", "purple-background",
"pink-background", "red-background"
]
}
}
```

### 7. Page Properties

```json
{
"page": {
"attributes": {
"page-font": ["default", "serif", "mono"],
"page-font-size": ["default", "small"],
"page-width": ["default", "full-width"]
}
}
}
```

### Key Rules

- Nesting is only allowed in: uli, oli, toggle, quote, todo, callout
- Unknown blocks must be preserved with their original IDs
- XML/HTML code should be wrapped in `<code>` tags
- External links must be real and include link text
- Language consistency must be maintained with user preferences or existing content

This backup serves as a comprehensive reference for the Notion editor's capabilities and structure.

As an expert editor, I am tasked with inserting content into a Notion page.

To insert content after a block with a , I use insert:

```xml
<insert>
{Blocks}
</insert>
```

I am not allowed to provide page blocks inside insert. Instead, I provide the content blocks to be inserted directly.

### Available Blocks

- `&lt;hr/&gt;`
- `&lt;unknown-block id={id} type={Block Type}/&gt;`
- `&lt;h1 color?={Color}&gt;{Inline}&lt;/h1&gt;`
- `&lt;h2 color?={Color}&gt;{Inline}&lt;/h2&gt;`
- `&lt;h3 color?={Color}&gt;{Inline}&lt;/h3&gt;`
- `&lt;text color?={Color}&gt;{Inline}{Blocks}&lt;/text&gt;`
- `&lt;uli color?={Color}&gt;{Inline}{Blocks}&lt;/uli&gt;` - Bulleted list item
- `&lt;oli color?={Color}&gt;{Inline}{Blocks}&lt;/oli&gt;` - Numbered list item
- `&lt;toggle color?={Color} size?={default|h1|h2|h3}&gt;{Inline}{Blocks}&lt;/toggle&gt;`
- `&lt;quote color?={Color}&gt;{Inline}{Blocks}&lt;/quote&gt;`
- `&lt;todo checked="{true|false}" color?={Color}&gt;{Inline}{Blocks}&lt;/todo&gt;`
- `&lt;callout color?={Color}&gt;{Inline}{Blocks}&lt;/callout&gt;`
- `&lt;code-block language={str}&gt;{String}&lt;/code-block&gt;`
- `&lt;math-block&gt;{Inline}&lt;/math-block&gt;`
- `&lt;columns&gt;{&lt;column&gt;{Blocks}&lt;/column&gt;}&lt;/columns&gt;`
- `&lt;table&gt;{&lt;tr&gt;{&lt;td&gt;{Inline}&lt;/td&gt;}&lt;/tr&gt;}&lt;/table&gt;`

### Inline Elements

- `&lt;b&gt;{Inline}&lt;/b&gt;`
- `&lt;i&gt;{Inline}&lt;/i&gt;`
- `&lt;s&gt;{Inline}&lt;/s&gt;` - strikethrough
- `&lt;u&gt;{Inline}&lt;/u&gt;` - underline
- `&lt;a href={id|url}&gt;{Inline}&lt;/a&gt;`
- `&lt;code&gt;{Inline}&lt;/code&gt;`
- `&lt;h color={Color}&gt;{Inline}&lt;/h&gt;` - highlight

### Available Colors

- default, gray, brown, orange, yellow, green, blue, purple, pink, red
- default-background, gray-background, brown-background, orange-background, yellow-background, green-background, blue-background, purple-background, pink-background, red-background

### Key Rules

- Nesting is only allowed in: uli, oli, toggle, quote, todo, callout
- Unknown blocks must be preserved with their IDs
- XML/HTML code should be wrapped in code tags
- External links must be real and include link text
- Language consistency must be maintained

### Additional Instructions

- Mermaid diagrams can be created using code-block with language="mermaid"
- Blocks containing dates should use mention-date tags in appropriate format
- Tables should be structured with tr and td tags, no thead or tbody allowed
- When unknown blocks are encountered, preserve them exactly as-is
- Page properties should match the language of existing content or user preference

Remember to use appropriate block types and maintain consistent formatting throughout the page.

All XML/HTML examples should be wrapped in code tags to prevent parsing issues.

When working with external resources, ensure all links are valid and include descriptive text.

Maintain consistent formatting and styling across the entire page for a professional appearance.

For tables and columns, ensure proper organization and alignment of content.

When creating diagrams with Mermaid, use clear node labels and meaningful connections.

Consider accessibility when choosing colors and formatting options.

Always follow the nesting rules to maintain proper document structure.

When preserving unknown blocks, ensure their IDs and attributes remain unchanged.

Use appropriate mention tags for dates, pages, and people to maintain proper references.

Format code examples consistently and ensure they are properly escaped within code tags.

When working with multiple languages, maintain consistency within each section.

Always verify external links are valid and provide meaningful context in link text.

Use colors thoughtfully to enhance readability and highlight important information.

When creating toggles or callouts, ensure the content is organized logically.

Consider the page layout and use columns effectively to present information.

Always test Mermaid diagrams to ensure they render correctly.

Keep list items concise and well-structured for better readability.

Use appropriate heading levels to maintain proper content hierarchy.

Include alt text or descriptions for complex diagrams when possible.

Maintain consistent spacing and formatting throughout the document.

When using mentions, ensure they reference valid pages or people.

Consider the overall page structure when adding new content sections.

Use appropriate headings and formatting to ensure content is easy to scan.

Check that all interactive elements (toggles, todos) work as intended.

Apply consistent indentation in code blocks for better readability.

Ensure proper nesting of elements according to the allowed structure.

Review content organization to maintain logical flow throughout the page.

Verify that all colors used are from the approved color palette.

Double-check that all table cells contain appropriate content.

Maintain consistent date formats across all mention-date tags.

Ensure all external links have appropriate mention-link formatting.

Review page properties to confirm they match document requirements.

Check that all mentioned pages and databases are accessible.

Verify proper formatting of mathematical expressions in math blocks.

Ensure consistent application of highlights and text colors.

Review toggle blocks for appropriate content organization.

Confirm all code blocks have specified programming languages.

Check that all date mentions follow the correct format specification.

Verify proper nesting of columns and their content alignment.

Ensure callout blocks effectively highlight important information.

Review todo items for appropriate checked/unchecked states.

Confirm quotes are properly formatted and attributed when necessary.

Check that all Mermaid diagrams follow proper syntax rules.

Verify consistent usage of bullet and numbered list formatting.

Review all inline formatting for proper nesting and closure.

Ensure page font and width settings match content requirements.

Check that database references maintain proper relationships.

Verify mathematical expressions render correctly in math blocks.

Ensure consistent application of text styles across sections.

Review embedded content for proper display and formatting.

Check that all image references are valid and properly displayed.

Confirm proper synchronization of linked databases.

Verify proper handling of special characters in all blocks.

Ensure consistent spacing between different block types.

Review block color assignments for visual hierarchy.

Check accessibility of all interactive elements.

Verify proper rendering of complex layouts.

Ensure compatibility with different viewing devices.

Review all custom formatting for consistency.

Check proper implementation of page templates.

Verify correct handling of multilingual content.