Skip to content

Instantly share code, notes, and snippets.

@seanmodd
Last active August 12, 2021 21:10
Show Gist options
  • Save seanmodd/61d12afde5f3aa988f315c0d56502fb9 to your computer and use it in GitHub Desktop.
Save seanmodd/61d12afde5f3aa988f315c0d56502fb9 to your computer and use it in GitHub Desktop.
Shortcuts to Remember

Shortcuts to always remember

Shorcut Action Shortcut Action
1. ^⌥G Google Search! --- 2. ⌥⌘K Bookmark Line of Code!
3. ⌥⌘L Jump to Next Bookmark! --- 4. ⌥⌘J Jump to Previous Bookmark!
5. ⌥⌘P Takes a CodeSnap! --- 6. ⌥⌘O Opens settings.json file!
7. ^⌥↑ Fast Move Upwards! --- 8. ^⌥↓ Fast Move Downwards!
9. ⌥⌘C Add CodeTour Step! --- 10. ^⌥↓ Fast Move Downwards!

Extensions to use

  1. LaunchX + njt from Vercel!
  2. GistPad
  3. CodeTour
  4. CodeSwing
  5. Markdown All in One
  6. CodeSnap
  7. Bookmarks
  8. FootSteps
  9. REST Client + YouTube Video
  10. Explorer Exclude

Markdown Cheat Sheet

Thanks for visiting The Markdown Guide!

This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic syntax and extended syntax.

Basic Syntax

These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.

Heading

H1

H2

H3

Bold

bold text

Italic

italicized text

Blockquote

blockquote

Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List

  • First item
  • Second item
  • Third item

Code

code

Horizontal Rule


Link

Markdown Guide

Image

alt text

Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

Table

Syntax Description
Header Title
Paragraph Text

Fenced Code Block

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

Footnote

Here's a sentence with a footnote. 1

Heading ID

My Great Heading {#custom-id}

Definition List

term : definition

Strikethrough

The world is flat.

Task List

  • Write the press release
  • Update the website
  • Contact the media

How to always start settings.json within the .vscode folder

{
  "workbench.colorCustomizations": {
    "editorError.foreground": "#00000000",
    "editorWarning.foreground": "#00000000",
    "editorInfo.foreground": "#00000000",
    "activityBar.background": "#3C2929",
    "titleBar.activeBackground": "#543939",
    "titleBar.activeForeground": "#FBFAFA"
  },
  "editor.suggest.showStatusBar": true,
  "files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true,
    "**/next.config.js": true,
    "*.js": false,
    "next.config.js": false,
    "**/*.js": false,
    "**/.markdownlint.json": true,
    "*.json": false,
    ".markdownlint.json": true,
    "**/*.json": false,
    "package-lock.json": true,
    "**/.prettierignore": true,
    ".prettierignore": true,
    "**/.gitignore": true,
    ".gitignore": true,
    "**/yarn.lock": true,
    "*.lock": true,
    "yarn.lock": true,
    "**/*.lock": true,
    "**/.eslintignore": true,
    ".eslintignore": true,
    "**/node_modules": false,
    "node_modules": false,
    "**/.prettierrc.js": true,
    ".prettierrc.js": true,
    "**/.eslintrc.js": true,
    ".eslintrc.js": true,
    "**/.vscode": true,
    ".vscode": true,
    "**/.next": true,
    ".next": true,
    "**/.tours": true,
    ".tours": true
  },
  "explorerExclude.backup": null
}

Footnotes

  1. This is the footnote.

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