Skip to content

Instantly share code, notes, and snippets.

@learningjs
Forked from staltz/migration-guide.md
Created December 28, 2015 05:42
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