Documentation

Welcome to the Hermes Markdown Markdown Syntax Guide. This documentation provides a comprehensive overview of the Markdown syntax supported by Hermes Markdown.

Markdown is a lightweight markup language that allows you to format text and add elements such as headers, lists, links, and more.

Table of Contents

  1. Headers
  2. Emphasis and Styling
  3. Lists
  4. Links
  5. Images
  6. Code Blocks
  7. Tables
  8. Keyboard Shortcuts

1. Headers

Headers in Markdown are used to denote different levels of section headings. To create headers, use the hash symbol (#) followed by a space. The number of hash symbols determines the header level:

# Heading 1
    ## Heading 2
    ### Heading 3

2. Emphasis and Styling

You can add emphasis and styling to your text using a variety of Markdown syntax:

  • Bold: Enclose the text in double asterisks (**).
  • Italic: Enclose the text in single asterisks (*).
  • Strikethrough: Enclose the text in double tildes (~~).
**Bold Text**
    *Italic Text*
    ~~Strikethrough Text~~

3. Lists

Markdown supports both ordered and unordered lists.

To create an unordered list, use hyphens (-), plus signs (+), or asterisks (*) followed by a space:

- Item 1
    - Item 2
    - Item 3

To create an ordered list, use numbers followed by periods (.) and a space:

1. Item 1
    2. Item 2
    3. Item 3

5. Images

To insert images into your Markdown files, use the following syntax:

![Alt Text](Image URL)

6. Code Blocks

To display code blocks or inline code, use backticks (`) to enclose the code.

For code blocks, you can use triple tilde characters (~):

~~~
    console.log("Hello, world!")
    ~~~

7. Tables

To create tables, use hyphens (-) to separate the header row and pipes (|) to separate the columns:

| Header 1 | Header 2 |
    | -------- | -------- |
    | Cell 1   | Cell 2   |
    | Cell 3   | Cell 4   |

8. Keyboard Shortcuts

The following keyboard shortcuts are available for quick actions in Hermes Markdown:

  • CTRL+S - Save File
  • CTRL+N - New File
  • CTRL+O - Open File
  • CTRL+E - Open Export Preview

This concludes the Hermes Notes Markdown Syntax Guide. With these Markdown syntax elements at your disposal , you can create well - structured and visually appealing content in Hermes Markdown.