fix sh doc code blocks

This commit is contained in:
Sebastian McKenzie
2014-11-30 11:05:56 +11:00
parent 3c7b2d7872
commit 4bd4e4cdbe
5 changed files with 54 additions and 19 deletions

View File

@@ -19,12 +19,16 @@ how you want to use it.
6to5 will simply compile your ES6+ script to ES5 if you pass it as an argument
to the command-line tool `6to5`:
$ 6to5 script.js
```sh
$ 6to5 script.js
```
If you have a file written using ES6+ and you just want to run it, `6to5-node`
has you covered:
$ 6to5-node script.js
```sh
$ 6to5-node script.js
```
And it doesn't end here! To see all the ways you can use 6to5, check out the
[Usage](http://6to5.github.io/usage.html) page.