Skip to content

Instantly share code, notes, and snippets.

@johnwatsondev
Forked from staltz/migration-guide.md
Created January 8, 2016 11:47
Show Gist options
  • Select an option

  • Save johnwatsondev/1206494649bc9ab38a34 to your computer and use it in GitHub Desktop.

Select an option

Save johnwatsondev/1206494649bc9ab38a34 to your computer and use it in GitHub Desktop.
How to show migration guides in GitHub Markdown

How to show migration guides in GitHub Markdown

Use the diff code highlighting tag.

  ```diff
  - foo
  + bar

Example:

-function () {
+function greet() {
   console.log('Hello world');
 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment