forked from streetwriters/notesnook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: adjust markdown shortcuts table
- Loading branch information
1 parent
e7f4ba8
commit 915f21d
Showing
2 changed files
with
25 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 23 additions & 19 deletions
42
docs/help/contents/rich-text-editor/markdown-notes-editing.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
# Markdown shortcuts in notes | ||
|
||
![Markdown notes editing with markdown shortcuts in Notesnook](/markdown-editing.gif) | ||
![Markdown notes editing with markdown shortcuts in notes](/markdown-editing.gif) | ||
|
||
The following markdown shortcuts are supported in the editor. | ||
|
||
| Shortcut | Block | | ||
| ------------------------------------------------------------------------------------- | --------------- | | ||
| # | Heading 1 | | ||
| ## | Heading 2 | | ||
| ### | Heading 3 | | ||
| #### | Heading 4 | | ||
| ##### | Heading 5 | | ||
| ###### | Heading 6 | | ||
| \*\*bold text\*\* | Bold | | ||
| \_italicized text\_ | Italic | | ||
| > blockquote | Blockquote | | ||
| 1. First item<br>2. Second item<br>3. Third item | Ordered list | | ||
| - First item<br>- Second item<br>- Third item | Unordered list | | ||
| - \[x] Write the press release<br>- [ ] Update the website<br>- [ ] Contact the media | Task list | | ||
| \`inline code\` | Inline code | | ||
| --- | Horizontal rule | | ||
| \[title](https://www.example.com) | Link | | ||
| \`\`\`<br>some code<br>\`\`\` | Codeblock | | ||
| Block | Markdown shortcut | | ||
| ------------------- | --------------------------------------------------------------------- | | ||
| Heading 1 | # | | ||
| Heading 1 | # | | ||
| Heading 2 | ## | | ||
| Heading 3 | ### | | ||
| Heading 4 | #### | | ||
| Heading 5 | ##### | | ||
| Heading 6 | ###### | | ||
| Bold | \*\*bold text\*\* | | ||
| Italic | \_italicized text\_ | | ||
| Blockquote | > blockquote | | ||
| Ordered list | 1. First item<br>2. Second item<br>3. Third item | | ||
| Unordered list | - First item<br>- Second item<br>- Third item | | ||
| Task list | - \[x] Write the note<br>- [ ] Update the help<br>- [ ] Call the team | | ||
| Inline code | \`inline code\` | | ||
| Horizontal rule | --- | | ||
| Link | \[title](https://www.example.com) | | ||
| Codeblock | \`\`\`<br>some code<br>\`\`\` | | ||
| Current Date | `/date` | | ||
| Date Time | `/time` | | ||
| Current Date & Time | `/now` | |