mydearxym
12/11/2015 - 11:13 PM

How to show migration guides in GitHub Markdown

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');
 }