Update headings -- everything was H1 -- now title is H1, each part H2, subparts H3
diff --git a/GitHubCodeLayout.md b/GitHubCodeLayout.md
index 0f2486a..ba58ec3 100644
--- a/GitHubCodeLayout.md
+++ b/GitHubCodeLayout.md
@@ -1,9 +1,9 @@
-# Introduction
+## Introduction
A common use case is to create a reusable library and an application that consumes it, and host both on GitHub. We will illustrate this with a trivial application called "` uselessd `" that consumes a likewise trivial library called "` useless `".
-# Code Layout
+## Code Layout
The app and both libraries live on GitHub, each in its own repository. ` $GOPATH ` is the root of the _project_ - each of your GitHub repos will be checked out several folders below ` $GOPATH `.
@@ -29,17 +29,17 @@
Each folder under ` src/github.com/jmcvetta/ ` is the root of a separate git checkout.
-# $GOPATH
+## $GOPATH
Your ` $GOPATH ` variable will point to the root of your Go workspace, as described in [How to Write Go Code](http://golang.org/doc/code.html).
-# Note for Eclipse Users
+## Note for Eclipse Users
Both Go and Eclipse use the term "workspace", but they use it to mean something different. What Go calls a "workspace" is what Eclipse calls a "project". Whenever this document uses either term, it refers to a Go workspace.
-# Setup the Workspace
+### Setup the Workspace
Let's assume we are starting from scratch. Initialize the two new repositories on GitHub, using the "Initialize this repository with a README" option so your repos can be cloned immediately. Then setup the project like this:
@@ -54,7 +54,7 @@
git clone git@github.com:jmcvetta/uselessd.git
```
-# Libraries
+## Libraries
Conventionally, the name of the repository is the same as the name of the package it contains. Our ` useless ` repo contains ` useless.go ` which defines ` package useless `:
@@ -67,7 +67,7 @@
```
-# Applications
+## Applications
An application - Go code that will be compiled into an executable command - always defines ` package main ` with a ` main() ` function.
@@ -92,7 +92,7 @@
```
-# Dependencies
+## Dependencies
Your project will probably depend on some existing packages. The application above depends upon ` golang.org/x/net/websocket `. You can install all dependencies by running "` go get -v ./... `" from the root of your workspace. The "` go get `" command is similar to "` go install `" in that it will attempt to build and install all packages in the workspace (technically, all packages matched by "` ./... `"), except that it will also examine their dependencies and download (and install) any that are missing first.
@@ -100,12 +100,12 @@
All dependencies will be installed alongside your code under "` $GOPATH/src `". All GitHub reposities checked out by "` go get `" will be use the read-only ` https:// ` repository by default. To push changes back to github from one of these repositories, change the "` origin/master `" ref in ` .git/config ` to match the SSH repository from GitHub.
-# Build
+## Build
During development you can build the ` useless ` library by itself with the command "` go build ...useless `". You could also give the full path to the package name, "` go build github.com/jmcvetta/useless `".
To compile ` uselessd.go ` and its dependencies into an executable, use the command "` go build ...uselessd `".
-# Example Code
+## Example Code
FWIW all the repo addresses on this page are real, and the ` uselessd ` application should compile if you follow the directions above.