diff --git a/docs/.meteor/versions b/docs/.meteor/versions
index bc96fe8126..e8c7fe73ef 100644
--- a/docs/.meteor/versions
+++ b/docs/.meteor/versions
@@ -21,9 +21,6 @@ html-tools@1.0.2
htmljs@1.0.2
http@1.0.7
id-map@1.0.1
-iron:core@1.0.0-pre5
-iron:location@1.0.0-pre5
-iron:url@1.0.0-pre5
jquery-waypoints@1.0.1
jquery@1.0.1
json@1.0.1
diff --git a/docs/client/basic/introduction.html b/docs/client/basic/introduction.html
index caffcdcc4c..dae7c4abab 100644
--- a/docs/client/basic/introduction.html
+++ b/docs/client/basic/introduction.html
@@ -60,12 +60,10 @@ catches your interest, we hope you'll get involved with the project!
GitHub
The core code is on GitHub. If you're able to write code or file issues, we'd love to have your help. Please read Contributing to Meteor for how to get started.
+{{/markdown}}
+
{{> commandLine}}
## XXX file structure
-
-
-{{/markdown}}
-
diff --git a/docs/client/basic/sections/commandline.md b/docs/client/basic/sections/commandline.md
index 01ef460440..9c47cc379f 100644
--- a/docs/client/basic/sections/commandline.md
+++ b/docs/client/basic/sections/commandline.md
@@ -2,53 +2,53 @@
Command Line Tool
-### `meteor help`
+#### `meteor help`
Get help on `meteor` command line usage. Running `meteor help` by itself
will list the common `meteor` commands. Running `meteor help `
will print detailed help about `meteor `.
-### `meteor create `
+#### `meteor create `
Make a subdirectory called `` and create a new Meteor app there.
-### `meteor run`
+#### `meteor run`
Serve the current app at [http://localhost:3000](http://localhost:3000)
using Meteor's local development server.
-### `meteor deploy `
+#### `meteor deploy `
Bundle your app and deploy it to ``. Meteor provides free hosting if
you deploy to `.meteor.com` as long as `` is a name
that has not been claimed by someone else.
-### `meteor update`
+#### `meteor update`
Update your Meteor installation to the latest released version and then
(if `meteor update` was run from an app directory) update the packages
used by the current app to the latest versions that are compatible with
all other packages used by the app.
-### `meteor add`
+#### `meteor add`
Add a package (or multiple packages) to your Meteor project. To query for
available packages, use the `meteor search` command.
-### `meteor remove`
+#### `meteor remove`
Remove a package previously added to your Meteor project. For a list of
the packages that your application is currently using, use the
`meteor list` command.
-### `meteor mongo`
+#### `meteor mongo`
Opens a MongoDB shell for viewing and/or manipulating collections stored
in the database. Note that you must already be running a server for the
current app (in another terminal window) in order for `meteor mongo` to
connect to the app's database.
-### `meteor reset`
+#### `meteor reset`
Reset the current project to a fresh state. Removes all local data.