# Standard and GitHub Flavored Markdown Demo Explore the wide range of Markdown features available for creating various types of content. ## Headings ### H3 Heading #### H4 Heading ##### H5 Heading ###### H6 Heading ## Text Formatting Some **bold text** and *italic text* and ~~strikethrough text~~. You can also use `inline code` within sentences. ## Links ### Standard Links [External link](https://docsify.js.org) [Link with title](https://docsify.js.org "Docsify Documentation") ### Anchor Links [Jump to Summary](#summary) [Go to Code Blocks](#code-blocks) ### Auto-linked URLs https://docsify.js.org ## Lists ### Unordered List * bullet * items * nested item * another nested item ### Ordered List 1. Numbered list 1. Of items 1. Sub-item 1. Another sub-item ### Task List - [x] Completed task - [ ] Incomplete task - [ ] Another task to do ## Tables | Feature | Supported | Notes | |---------|-----------|-------| | Headers | ✅ | All heading levels | | Lists | ✅ | Ordered, unordered, nested | | Code | ✅ | Inline and blocks | | Tables | ✅ | With alignment | ## Quote > Quoted text > > Multi-line quotes are also supported > with proper formatting. ## Code Blocks ### JavaScript ```javascript function hello(name) { return `Hello, ${name}!`; } ``` ### Python ```python def fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2) ``` ## Images ![Image of Minion](https://octodex.github.com/images/minion.png) ## Horizontal Rule Content above the line. --- Content below the line. ## Emoji Support Status: :white_check_mark: :x: :warning: | Feedback: :thumbsup: :heart: :fire: | Objects: :bulb: :key: :rocket: ## Alerts/Callouts (GitHub-flavored) > [!NOTE] > Highlights information that users should take into account. > [!TIP] > Optional information to help a user be more successful. > [!WARNING] > Critical content demanding user attention due to potential risks. ## Mermaid Diagrams ### Flow Chart ```mermaid flowchart TD A[Start] --> B{Is it?} B -->|Yes| C[OK] C --> D[Rethink] D --> B B ---->|No| E[End] ``` ### Sequence Diagram Example ```mermaid sequenceDiagram Alice->>John: Hello John, how are you? John-->>Alice: Great! Alice-)John: See you later! ``` More information about **mermaid** syntax [here](https://mermaid-js.github.io/mermaid/). ## LaTeX Mathematical Expressions Inline: $ax^2 + bx + c = 0$ and block: $$ x = \frac{-b \pm \sqrt{b^2-4ac}}{2a} $$ More information about **LaTeX** mathematical expressions [here](https://meta.math.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference). ## Keyboard Shortcuts Press Ctrl + C to copy. ## Definition Lists Term 1 : Definition of term 1 Term 2 : Definition of term 2 : Another definition for term 2 ## Footnotes Here's a sentence with a footnote[^1]. [^1]: This is the footnote text. ## HTML & Special Elements Press Ctrl + C to copy. Escape literal \*asterisks\* with backslashes.
Click to expand This content is hidden by default and can be toggled.
### Embedded Video --- ## Summary This demo showcases the various Markdown features, including: - Text formatting and structural elements - Comprehensive linking capabilities - Lists and organized content presentation - Tables and quoted content - Code syntax highlighting - Images and visual separators - Emoji support for enhanced communication - GitHub-flavored alerts and callouts - Interactive diagrams with Mermaid - Mathematical expressions with LaTeX - Special HTML elements and formatting