Markdown Syntax

Markdown formatting is supported in comments for better readability and structure. Below are some commonly used Markdown features:

#Supported Markdown Elements

  • Bold text: **bold**bold
  • Italic text: *italic*italic
  • Lists:
    • Unordered: - item 1 - item 2
    • Ordered: 1. item 1 2. item 2
  • inline code using backticks: `inline code`
  • Code blocks with syntax highlighting:
    ```js
    const x = 'foo';
    const y = 'bar';
    ```

#Unsupported Markdown Elements

  • Headings (# Heading)
  • Blockquotes (> Blockquote)

For a full Markdown guide, visit: Markdown Guide