Skip to content

Latest commit

 

History

History
75 lines (52 loc) · 1.27 KB

File metadata and controls

75 lines (52 loc) · 1.27 KB

Sample Markdown Document

A short paragraph with bold, italic, and strikethrough.
Inline code: npm run build. A link to Markdown guide.

Blockquote line 1
Blockquote line 2 with bold.

Lists

  • Unordered item
    • Nested item
  • Another item
  1. Ordered item
  2. Second item
    1. Nested ordered item
  3. Third item
  • Completed task
  • Pending task

Code

Inline: console.log("hello");

Fenced code:

function greet(name) {
  console.log(`Hello, ${name}!`);
}
greet("World");

Table

Feature Supported Notes
Bold Yes Use **text**
Italic Yes Use *text*
Code Yes Inline and fenced
Mermaid Yes See diagram below

Image

Placeholder image

Mermaid Diagram

flowchart TD
  A[Start] --> B{Decision?}
  B -->|Yes| C[Proceed]
  B -->|No| D[Stop]
  C --> E[Done]
  D --> E
Loading

Task List Example

  • Write draft
  • Add diagram
  • Proofread
  • Publish

Footnotes

Here is a statement with a footnote.1

Horizontal Rule


Footnotes

  1. Footnote text goes here.