From d6fce5ad186219204c68ad77e57f5ec9d73bbe00 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Thu, 22 Jun 2023 10:40:32 +0500 Subject: [PATCH] docs: add more markdown shortcuts --- .../contents/rich-text-editor/markdown-notes-editing.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/help/contents/rich-text-editor/markdown-notes-editing.md b/docs/help/contents/rich-text-editor/markdown-notes-editing.md index e44640d4e4..d5a5786e2b 100644 --- a/docs/help/contents/rich-text-editor/markdown-notes-editing.md +++ b/docs/help/contents/rich-text-editor/markdown-notes-editing.md @@ -2,12 +2,11 @@ ![Markdown notes editing with markdown shortcuts in notes](/markdown-editing.gif) -The following markdown shortcuts are supported in the editor. +Notesnook supports the following (Markdown) shortcuts in the editor: | Block | Markdown shortcut | | ------------------- | --------------------------------------------------------------------- | | Heading 1 | # | -| Heading 1 | # | | Heading 2 | ## | | Heading 3 | ### | | Heading 4 | #### | @@ -15,14 +14,18 @@ The following markdown shortcuts are supported in the editor. | Heading 6 | ###### | | Bold | \*\*bold text\*\* | | Italic | \_italicized text\_ | +| Strikethrough | \~\~strikethrough\~\~ | | Blockquote | > blockquote | | Ordered list | 1. First item
2. Second item
3. Third item | | Unordered list | - First item
- Second item
- Third item | | Task list | - \[x] Write the note
- [ ] Update the help
- [ ] Call the team | +| Outline list | -o Write the note
-o Update the help
-o Call the team | | Inline code | \`inline code\` | +| Inline Math | \$\$2 + 2 = 4\$\$ | | Horizontal rule | --- | | Link | \[title](https://www.example.com) | -| Codeblock | \`\`\`
some code
\`\`\` | +| Codeblock | \`\`\`javascript
function hello() { }
\`\`\` | +| Math block | $$$
2 + 2 = 4
$$$ | | Current Date | `/date` | | Date Time | `/time` | | Current Date & Time | `/now` |