How use markdown
📘 How to Write in Markdown in Notiq
Markdown is a simple way to format text using plain characters. With it, you can easily add headings, lists, bold text, and much more – no complex editor required.
✨ Basic Formatting
Bold
This text will be bold
Italic
This text will be italic
Strikethrough
This text will be strikethrough
🏷️ Headings
Use #
to create a heading. The more #
, the smaller the heading level:
Heading 1
Heading 2
Heading 3
Heading 4
📋 Lists
Bullet List
- Item 1
- Item 2
- Subitem
- Item 3
Numbered List
- First
- Second
- Third
🔗 Links and Images
Link
Image
🧾 Blockquotes
Use >
to create a quote:
This is a quote.
🔣 Code
Inline Code
Use backticks
to mark inline code.
Code Block
```javascript
function hello() {
console.log("Hello World");
}
```
📏 Horizontal Line
Use ---
, ***
, or ___
to create a horizontal line:
✅ Task Lists
You can create to-do checkboxes:
- [x] Task completed
- [ ] Task not completed
🧠 Tips
- In Notiq, you can see live preview of your formatted content.
- Formatting is applied immediately as you type.
- You can mix different Markdown elements in one document.
🚀 Ready to start?
Try typing some of the examples above in your editor and see how easy it is to create clean, organized notes in Notiq!
Published at: 09.05.2025 14:34