@@ -5,9 +5,9 @@ Command line interface for [CodeRoad](http://coderoad.github.io). See the [docs]
55
66Use [ CodeRoad CLI] ( https://github.com/coderoad/coderoad-cli ) to setup and build a project data file.
77
8- * Install * CodeRoad-CLI* . Make sure [ NodeJS] ( nodejs.org ) is already installed
8+ Install * CodeRoad-CLI* . Make sure [ NodeJS] ( nodejs.org ) is already installed
99
10- ` > npm install -g coderoad-cli`
10+ > npm install -g coderoad-cli
1111
1212
1313### Create
@@ -16,7 +16,7 @@ Get setup quickly with CodeRoad: either [clone a tutorial repo](https://git-scm.
1616
1717In your development directory, run ** create** with your new package name.
1818
19- ` > coderoad create $YOUR-PACKAGE-NAME$`
19+ > coderoad create $YOUR-PACKAGE-NAME$
2020
2121Running ** create** generates:
2222
@@ -47,13 +47,13 @@ We'll learn more about these configurations when it's time to [publish](#publish
4747
4848Update changes to your tutorial by running ** build** . This will generate a * coderoad.json* data file used by * atom-coderoad* .
4949
50- ` > coderoad build`
50+ > coderoad build
5151
5252### Demo Your Tutorial
5353
5454Open a new directory for demoing your tutorial. Setup a new NPM project file.
5555
56- ` > npm init`
56+ > npm init
5757
5858Add your package name to the ` dependencies ` in ` package.json ` :
5959
@@ -73,12 +73,12 @@ Normally you would use `npm install` to install the package, but your package is
7373
7474Inside of your tutorial root directory, run link.
7575
76- ` > npm link`
76+ > npm link
7777
7878Inside of your demo root directory, connect the link.
7979
80- ` > npm link coderoad-$YOUR-PACKAGE-NAME$`
81- ` > npm install`
80+ > npm link coderoad-$YOUR-PACKAGE-NAME$
81+ > npm install
8282
8383
8484### Using Atom
0 commit comments