Instantly beautify your Github repositories' README.md
with DocumentUp. This site has been generated with it.
Essentially, it parses your readme's markdown into a clean and simple documentation website. Made especially for your gh-pages
branch, all you need is a single index.html
file that includes the DocumentUp script.*
* Some configuration required
Simple. Put this recommended setup in your repository's gh-pages' branch's index.html
:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<script src="http://cdnjs.cloudflare.com/ajax/libs/documentup/latest.min.js"></script>
<script>
DocumentUp.document("username/repository");
</script>
</head>
<body></body>
</html>
Make sure to change the "username/repository"
to the repository's name and user's username.
Recommended
Use CDNJS with this script src
: http://cdnjs.cloudflare.com/ajax/libs/documentup/latest.min.js
Also good
Download it from this repository There's a minified version of it named documentup.min.js
DocumentUp, in its simplest form, accepts a single argument. A string representing a public repository's "route":
DocumentUp.document("username/repository");
It can be enhanced with an option object like so:
DocumentUp.document({
repo: "username/repository",
color: "green"
});
repo (String) required
Github repository in the form of username/repository
name (String) default: repository name
Name of your project. It'll appear in the header of the sidebar. Defaults to the repository
substring of the repo
option.
color (String) default: "#336699"
CSS-like color representing the color for the links both in the sidebar and the content.
issues (Boolean or String) default: true
Adds a link to the sidebar for the issues tab of the repository if true
. Also accepts a string if your issues are managed elsewhere.
travis (Boolean) default: false
Indicate if the project is being tested by Travis-CI. If true
, it'll add the small travis badge in the sidebar.
twitter (String or Array of strings) default: null
Add follow buttons for one or more Twitter accounts to your sidebar. Useful to gather followers.
Just like you normally would. DocumentUp also supports "Github Flavored Markdown" and we recommend you use it for syntax highlighting.
h1's (# in markdown) will appear as first level navigation in the sidebar while h2's (##) will appear under them as sub-navigation.
Example:
# Project name / Title (won't appear in the sidebar)
Some intro text if you want.
## Top level-navigation
### Sub-navigation
#### This wouldn't show up in the sidebar
All still very much a work in progress, run the tests in your browser here: spec/index.html
If you're a designer or coder and would like to contribute new styles, new features or bug fixes, please don't keep them to yourself, fork the project and send in a pull request!
- Node.js (preferrably > 0.6)
- npm
src/browser/documentup.coffee
: DocumentUp Class definition
src/stylesheets/screen.styl
: Styles for the documentation
Simply npm install
When you're done, ./scripts/package
to package everything into a single file.
- iOS and IE8+ compatibility
- Themes
- Bring Your Own Markdown Source
- Multi-page aggregation
- Thanks for the few well documented project sites out there for the inspiration.
- Thanks to CDNJS for being so helpful and hosting this project.
- Files now parsed in UTF-8
- Namespaced repositories in localStorage (thanks to tbranyen)
- A few README fixes
http://cdnjs.cloudflare.com/ajax/libs/documentup/0.1.0/documentup.min.js
- Initial release
Copyright (c) 2012 Jerome Gravel-Niquet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.