Skip to content

Instantly share code, notes, and snippets.

@saibotsivad
Last active August 29, 2015 14:22
Show Gist options
  • Save saibotsivad/9257ccbb80beb49dc6c0 to your computer and use it in GitHub Desktop.
Save saibotsivad/9257ccbb80beb49dc6c0 to your computer and use it in GitHub Desktop.
Markdown+Noddity Cheatsheet
  • Links to external websites are normal Markdown: [words](http://the-website.com)

    • [A](B) where A is the visible words, and B is the URL.
  • Links to internal Markdown pages are like this: [[folder/file-name.md|page name]]

    • [[A|B]] where A is the file path to the Markdown file, and B is the visible words.
  • Links to files are like this: [words](content/folder/file.pdf]

    • [A](content/B) where A is the visible words, B is the file path to the non-Markdown file.
  • Normal images are ![caption](http://the-website.com/folder/picture.jpg)

  • Images with relative paths are ![caption](/folder/picture.jpg)

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