Skip to content

Latest commit

 

History

History
206 lines (136 loc) · 2.96 KB

File metadata and controls

206 lines (136 loc) · 2.96 KB

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Text Formatting

Regular paragraph text. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Bold text and also bold

Italic text and also italic

Bold and italic and also bold and italic

Strikethrough text

Inline code

Blockquote text that spans multiple lines

Nested blockquote

Second level

Third level


Lists

Unordered List

  • Item one
  • Item two
    • Nested item
    • Another nested item
      • Deeply nested item
  • Item three

Ordered List

  1. First item
  2. Second item
    1. Nested ordered item
    2. Another nested ordered item
  3. Third item

Task List

  • Completed task
  • Pending task
  • Another completed task
  • Another pending task

Code

Inline code: const greeting = "Hello, World!"

// JavaScript code block
function fibonacci(n) {
  if (n <= 1) return n;
  return fibonacci(n - 1) + fibonacci(n - 2);
}

console.log(fibonacci(10)); // 55
# Python code block
def greet(name: str) -> str:
    return f"Hello, {name}!"

print(greet("World"))
# Shell commands
echo "Hello, World!"
ls -la
cd /home/user
# no line numbers
echo "Hello, World!"
ls -la
cd /home/user
# outline line 3
echo "Hello, World!"
ls -la
cd /home/user
# outline line 3
echo "Hello, World!"
ls -la
cd /home/user
# diff
+ echo "Hello, World!"
- ls -la
cd /home/user
# diff, no line numbers
+ echo "Hello, World!"
- ls -la
cd /home/user

Note

This is a note callout — for general information.

Tip

This is a tip callout — for helpful suggestions.

Important

This is an important callout — for critical information.

Warning

This is a warning callout — for potentially harmful actions.

Caution

This is a caution callout — for actions with serious consequences.


Links and Images

https://example.com

Inline link

Link with title

Reference link

Alt text for image


Tables

Name Age City
Alice 30 New York
Bob 25 Los Angeles
Charlie 35 Chicago
Left aligned Center aligned Right aligned
Left Center Right
Text Text Text

Horizontal Rules





Footnotes

Here is a sentence with a footnote.1

Another sentence with a footnote.2


Escape Characters

*Not italic* **Not bold**

Backslash: \

Footnotes

  1. This is the first footnote.

  2. This is a named footnote.