Skip to content

Latest commit

 

History

History
104 lines (85 loc) · 1.83 KB

File metadata and controls

104 lines (85 loc) · 1.83 KB

H1

H2

H3

H4

H5
H6

regular italic italic bold bold bold italic bold italic bold italic strikethrough inline code `literal` *not* _italic_ # not a heading

  • Unordered item
    • Nested item
      • Third level
  • Task list:
    • To do
    • Done
    • Mixed formatting with code
  1. Ordered can start anywhere
  2. …like here (intentional)
    1. Nested ordered
    2. Multiple paragraphs within a list item: Still the same item.

A single-level quote

A nested quote with bold and code

Inline: Example Reference: [Ref Link][ref] and [Another][another-ref] Relative: This section Footnote: 1 [ref]: https://example.com [another-ref]: https://github.com

Inline: Alt text Reference: ![Logo][logo-ref] [logo-ref]: https://github.githubassets.com/images/modules/logos_page/GitHub-Logo.png "GitHub Logo"

Left Center Right
italic code 123
bold strike 4.56
[link][ref] 🎉 end
# Shell
echo "Hello, world" | tr a-z A-Z
#include <stdio.h>

int main() {
    printf("Hello, world\n");
    return 0;
}
#include <iostream>

int main() {
    std::cout << "Hello, world" << std::endl;
    return 0;
}
export function greet(name) {
  return `hello ${name}`;
}
{
  "name": "gfm-kitchen-sink",
  "private": true,
  "scripts": { "test": "echo ok" }
}
def greet(name: str) -> str:
    return f"hello {name}"

Footnotes

  1. This is a footnote with formatting and a link.