Note: in order to run the whole documentation stack locally (with snippets and samples), see the forum entry.
This is both the source documentation and build system for the Aria Templates Usermanual. It consists of:
After you clone this repo, remember you have to install the dependencies. Call:
$ npm install
You should update documentation files inside the src
folder, and run the build using this command:
$ node build
If you want to just build the latest version of documentation for quick testing:
$ node build latest
Note that build works with Node 0.8.x, it doesn't run properly on Node 0.10.x.
$ node test // and follow instructions
Anytime you build a new version of the documentation, you can test your changes using the test server. Just open a browser on http://localhost:8000/
and navigate to your page.
Note that this repository uses a git commit hook. Any pushes or merges into the master branch rebuilds all versions of the documentation on the website.
Anytime a new version of the documentation is rolled out (ie for each new ariatemplates version) there are few operations to perform on this repository
/src/latest/
to /src/<% new version here %>/
/resources/articles/navigationbar/latest.md
Edit /resources/articles/versionList.jade
to add the new version (have a look at the bottom of the file)
from
...
mixin version("1.3.6", true)
mixin version("1.3.5")
mixin version("1.3.4")
to
...
mixin version("<% new version here %>", true)
mixin version("1.3.6")
mixin version("1.3.5")
mixin version("1.3.4")
If you find any typos or have any ideas of something that should be documented, we'll very gladly take any pull requests for new documentation!
This source material is intended to be open and sharable to all.
Fork the repository, create a topic branch, do your fix and finally open a pull request.
Aria Templates usermanual documentation is licensed under a Apache 2.0 license