Markdown Guide & Tips

Basic Syntax

Headers

# H1 Header
## H2 Header
### H3 Header
#### H4 Header
##### H5 Header
###### H6 Header

Emphasis

*italic* or _italic_
**bold** or __bold__
***bold italic*** or ___bold italic___
~~strikethrough~~

Lists

* Unordered list item
* Another item
  * Nested item

1. Ordered list item
2. Another item
   1. Nested item

Links and Images

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

Code

`inline code`

```javascript
// Code block
function hello() {
    console.log("Hello, World!");
}
```

Blockquotes

> This is a blockquote
> Multiple lines
>> Nested blockquote

Tables

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

Video Embedding

You can embed videos from YouTube (including Shorts) and Vimeo using the following syntax:


@[youtube](https://www.youtube.com/watch?v=VIDEO_URL)
@[youtube](https://www.youtube.com/shorts/VIDEO_URL)
@[youtube](https://youtu.be/VIDEO_URL)


@[vimeo](https://vimeo.com/VIDEO_URL)

Examples:


@[youtube](https://www.youtube.com/watch?v=dQw4w9WgXcQ)
@[youtube](https://www.youtube.com/shorts/cLNeDHpsAnE)
@[youtube](https://youtu.be/dQw4w9WgXcQ)


@[vimeo](https://vimeo.com/148751763)

Features:

  • Automatic video thumbnail preview
  • Click-to-play functionality
  • Support for multiple video platforms
  • Responsive video player that maintains aspect ratio
  • Support for both regular videos and shorts

Editor Features

Keyboard Shortcuts

  • Tab - Insert 4 spaces
  • Ctrl/Cmd + S - Save document

Interface Features

  • Real-time Preview - See your formatted text instantly
  • Sync Scrolling - Toggle synchronized scrolling between editor and preview
  • Multiple Themes - Choose from various color themes
  • Font Selection - Multiple fonts for better writing experience
  • Auto-save - Your content is automatically saved

Tips & Tricks

  • Use the preview pane to check your formatting in real-time
  • Toggle sync scrolling when editing long documents
  • Try different themes and fonts to find your perfect writing environment
  • Use keyboard shortcuts for faster editing
  • Your work is automatically saved in the browser