Skip to content

Instantly share code, notes, and snippets.

@feedm3
Last active October 22, 2021 11:28
Show Gist options
  • Save feedm3/c366ac7f00e3cbd5de899e78bae404e4 to your computer and use it in GitHub Desktop.
Save feedm3/c366ac7f00e3cbd5de899e78bae404e4 to your computer and use it in GitHub Desktop.
Markdown examples

Github Markdown Examples

Code with no language

const test = 'Hi'

Code with typescript

interface Test {
  name: string;
}

Code with diff

interface Test {
-  name: string;
+  fullName: string;
}

Lists

Numbered list with under 10 entries:

  1. test
  2. test
  3. test
  4. test

Numbered list with more then 10 entries:

  1. test
  2. test
  3. test
  4. test
  5. test
  6. test
  7. test
  8. test
  9. test
  10. test
  11. test
  12. test
  13. test
  14. test
  15. test
  16. test
  17. test
  18. testtest
  19. test
  20. test

Unordered list:

  • test
  • test
  • test
  • test
  • test
  • test
  • test
  • test
  • test
  • test
  • test
  • test
  • test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment