Fix HTML display for docs
authorLuke Yeager <lukeyeager@users.noreply.github.com>
Tue, 16 Jun 2015 16:12:32 +0000 (09:12 -0700)
committerLuke Yeager <lukeyeager@users.noreply.github.com>
Tue, 16 Jun 2015 16:12:32 +0000 (09:12 -0700)
Doesn't change display in Markdown

docs/development.md

index ccb6a29..107c2c3 100644 (file)
@@ -62,28 +62,25 @@ The following is a poetic presentation of the protocol in code form.
 #### [Shelhamer's](https://github.com/shelhamer) “life of a branch in four acts”
 
 Make the `feature` branch off of the latest `bvlc/master`
-```
-git checkout master
-git pull upstream master
-git checkout -b feature
-# do your work, make commits
-```
+
+    git checkout master
+    git pull upstream master
+    git checkout -b feature
+    # do your work, make commits
 
 Prepare to merge by rebasing your branch on the latest `bvlc/master`
-```
-# make sure master is fresh
-git checkout master
-git pull upstream master
-# rebase your branch on the tip of master
-git checkout feature
-git rebase master
-```
+
+    # make sure master is fresh
+    git checkout master
+    git pull upstream master
+    # rebase your branch on the tip of master
+    git checkout feature
+    git rebase master
 
 Push your branch to pull request it into `BVLC/caffe:master`
-```
-git push origin feature
-# ...make pull request to master...
-```
+
+    git push origin feature
+    # ...make pull request to master...
 
 Now make a pull request! You can do this from the command line (`git pull-request -b master`) if you install [hub](https://github.com/github/hub). Hub has many other magical uses.