FeaturesGuideBlogFAQContactOpen Editor

Help & Tutorials

Everything you need to use the markdown.co.in editor effectively — from basic syntax to advanced shortcuts.

Get up and running in seconds

The editor requires no setup. Open it, write, and export. Here is how the core workflow looks.

1

Open the editor

Visit markdown.co.in/editor.html in any modern browser. No installation or account is needed.

2

Choose a view mode

Use the tabs in the header to switch between Editor (source only), Split (side-by-side preview), or Preview (rendered output). Keyboard shortcuts: Alt+1, Alt+2, Alt+3.

3

Write your Markdown

Type in the left panel. The right panel updates in real time. Use the formatting toolbar for common insertions — bold, italic, tables, code blocks, links, and more.

4

Save your document

Press Ctrl+S or click Save. Your document downloads as a .md file. To open an existing file, press Ctrl+O or drag and drop it onto the editor.

Markdown Syntax

The editor supports GitHub Flavored Markdown (GFM). Here are the most commonly used elements.

Text Formatting

markdown
**Bold text**
_Italic text_
~~Strikethrough~~
`Inline code`

Headings

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

Lists

markdown
- Unordered item
- Another item

1. Ordered item
2. Second item

- [ ] Task item
- [x] Completed task

Links & Images

markdown
[Link text](https://url.com)

![Image alt](https://url.com/img.png)

Code Blocks

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

Tables

markdown
| Column 1 | Column 2 |
|----------|----------|
| Cell A   | Cell B   |
| Cell C   | Cell D   |

Work Faster with Shortcuts

File Operations

Ctrl+SSave / download .md
Ctrl+OOpen file
Ctrl+FFind in document

Formatting

Ctrl+BBold
Ctrl+IItalic
Alt+1Editor view
Alt+2Split view
Alt+3Preview view

Start writing better Markdown today

Free, private, no account needed — open the editor in your browser and write immediately.