Skip to content

Instantly share code, notes, and snippets.

@learningjs
Forked from staltz/migration-guide.md
Created December 28, 2015 05:42
Show Gist options
  • Save learningjs/de16ce176f578093def6 to your computer and use it in GitHub Desktop.
Save learningjs/de16ce176f578093def6 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