Skip to content

Markdown Support

GetCTX supports extended markdown syntax.

Basic Syntax

markdown
# Heading 1

## Heading 2

### Heading 3

**Bold text**
_Italic text_
**_Bold and italic_**

- Unordered list
- Item 2

1. Ordered list
2. Item 2

[Link](https://example.com)
![Image](image.jpg)

Code Blocks

markdown
```typescript
function hello() {
  console.log('Hello, world!');
}
```

Tables

markdown
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

Task Lists

markdown
- [x] Completed task
- [ ] Uncompleted task

Extensions

GetCTX supports these markdown extensions:

  • Mentions - @user or @note
  • Tags - #tag
  • LaTeX Math - $inline$ or $$block$$
  • Mermaid Diagrams - Code blocks with mermaid language