artifact-app 1.0.1

Artifact is a design doc tool made for developers. It allows anyone to easily write and link their design docs both to each other and to source code, making it easy to track how complete their project is. Documents are revision controllable, can be rendered as a static web page and have a full suite of command line tools for searching, formatting and displaying them.
Documentation
The `art export html` command can be used to create a static site which
is included on github. For an example, see
[artifact's own design docs](http://vitiral.github.io/artifact/#artifacts/REQ-1)

In order to make a github page for your site that hosts your design documents:
- [activate github pages]https://pages.github.com/ (we will be using the
    `index.html` option)
- run `art export html`, which will generate an `index.html` file and a
    `css/` folder.
- run `git add index.html css` to add the generated files
- push to master or to `gh-pages` branch

That's it! You should be able to navigate to
`http://<username>.github.io/<repo-name>/` to view your page!

## Add Code Links
Once you have a basic page up, it is good to have your source code
implementations be linked from your design docs. For this, you should use the
`--path-url` flag. Read the documentation on that command with `art export --help`