Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 985 Bytes

index.md

File metadata and controls

36 lines (28 loc) · 985 Bytes

A Sample Markdown Page

Markdown is a simple way to format text for the web. It uses plain text and a few special characters to create headings, lists, code blocks, and more.

Maya Basic Formatting

  • Headings: Use # for headings. More #s mean smaller headings.
    • # This is a heading 1
    • ## This is a heading 2
    • ### This is a heading 3
  • Paragraphs: Separate paragraphs with blank lines.
  • Emphasis: Use * or _ for italics.
    • *This is italic*
    • _This is also italic_
  • Bold: Use ** or __ for bold.
    • **This is bold**
    • __This is also bold__

Lists

  • Unordered lists: Use *, -, or +.
      • Item 1
      • Item 2
      • Item 3
  • Ordered lists: Use numbers.
      1. Item 1
      1. Item 2
      1. Item 3

Code Blocks

Use triple backticks (```) to create code blocks.

def greet(name):
  print("Hello, " + name + "!")