tinydoc
v5.0.1
Published
Fast and sleek and modular documentation generator.
Downloads
100
Readme
tinydoc
tinydoc is a documentation generator that is able to scan, parse, and present documentation found in different sources in a coherent UI. Example sources are JavaScript modules, Markdown articles, and Rails APIs.
Motivation
- Write anywhere: docs may live inside the main codebase (right next to your code) or outside; the tool shouldn't care. This caters for people who don't like to look up documentation online and would rather find everything in their code editor, and for others who either do not have the code base, or prefer reading in a browser.
- Aggregate, linkable docs: the ability to inter-link entities regardless of the source; like pointing to a JavaScript module from a markdown article.
- Easy deployment: an .html file that requires no webserver to power, so that one can easily host the docs anywhere (like on GitHub Pages or any static server.)
Installation
tinydoc requires Node.js to run and you can get it through NPM by running:
npm install -g tinydoc
Now run tinydoc --help
for more information.
Configuration
tinydoc will look for a file called tinydoc.conf.js
in the CWD, or use the file specified using the --config
command-line argument. The file is a regular JavaScript module. For example:
module.exports = {
outputDir: "./public/doc"
};
For the actual configuration parameters, please refer to each plugin's README file found under plugins/
.
API Docs
You can find them here: http://tinydoc.netlify.com/.
Extending
tinydoc accepts plugins that can hook into the compilation of the docs. The compilation is composed of several phases:
- the scanning phase: sources are scraped and a database is generated
- the indexing phase: a registry of all linkable entities is generated
- the rendering phase: all non-HTML content is converted to HTML and links are resolved
- the writing phase: the database, now containing rendered content, is exported to some file which the UI can use to render its stuff
The UI of tinydoc is written in React and is also extensible through different means: outlets and full-fledged plugins.
TODO: UI plugin guide.
Hacking
- official packages live under
/packages
UI tests
npm run test:ui
npm run test:ui:packages
License
Copyright (C) 2015 Ahmad Amireh
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.