Markdown Syntax
If you are familiar with Markdown syntax, you can use it in the app. I believe that with the combination of the WYSIWYG editor and Markdown syntax, you can get the best of both worlds.
It is very easy to use links, insert, remove, and change cells in tables, add, move images across the page, and still be able to copy and paste Markdown text across different Markdown apps.
There are features that make the app more powerful:
- Markdown syntax -- App support almost all markdown syntax. You could type markdown syntax in the editor and the app will auto format it.
- Copy as markdown -- You could copy a block of text as markdown syntax by using the export button. Then you could paste it into other markdown apps.
- Paste from markdown -- You could paste a block of markdown syntax into the editor by using
Cmd + V
. The app will auto format it. - Bulk import -- You could import multiple markdown files & folders, the converter will maintain the original folder structure.
- Bulk export -- You could export multiple notes & folders to markdown files, the converter will maintain the original folder structure.
Paste from markdown
You can paste a block of Markdown syntax into the editor by using Cmd + V
. The app will automatically format it. ConniePad supports most Markdown syntax.
Copy as markdown
You can copy a block of text in Markdown syntax by using the export button. Then, you can paste it into other Markdown apps. ConniePad will convert the proprietary format that is not in Markdown syntax to plain text.
Supported markdown syntax
Syntax | Description |
---|---|
**Bold** | Bold |
*Italic* | Italic |
~~Strikethrough~~ | Strikethrough |
==Highlight== | Highlight |
`code` | Inline code |
[Link](https://www.google.com) | Link |
- List item | Bullet List |
1. List item | Ordered list |
[ ] Task | Task |
[x] Task | Completed task |
> Quote | Quote |
# Heading | Heading 1 |
## Heading | Heading 2 |
### Heading | Heading 3 |
#### Heading | Heading 4 |
##### Heading | Heading 5 |
###### Heading | Heading 6 |
--- | Horizontal line |
*** | Horizontal line |
*** | Horizontal line |
*** | Horizontal line |
```codeblock``` | Codeblock |