daux.io/README.md

132 lines
4.4 KiB
Markdown
Raw Normal View History

2013-06-04 20:23:01 +02:00
**TM Docs** is an auto documentation generator that uses your folder structure and Markdown files to create custom documentation on the fly. It helps create great looking documentation in a developer friendly way.
2013-06-03 15:32:55 +02:00
2013-06-04 19:26:14 +02:00
## Features
2013-06-03 15:32:55 +02:00
2013-06-04 20:23:01 +02:00
* Supports GitHub Flavored Markdown
* Auto Syntax Highlighting
2013-06-04 19:26:14 +02:00
* Auto Generated Navigation
2013-06-04 20:23:01 +02:00
* 12 Built-In Bootstrap Themes
* 35 Syntax Highlighting Themes
2013-06-04 19:26:14 +02:00
* Shareable/Linkable SEO Friendly URLs
2013-06-04 20:23:01 +02:00
* Built On Bootstrap
* No Build Step
2013-06-04 19:26:14 +02:00
* Git/SVN Friendly
2013-06-04 20:23:01 +02:00
## Demos
This is a list of sites using TM-Docs:
* [TodayCMS Docs](http://docs.todaymade.com)
2013-06-04 20:24:06 +02:00
Do you use TM-Docs? Send me a pull request or open an [issue](https://github.com/justinwalsh/tm-docs/issues) and I will add you to the list.
2013-06-04 20:23:01 +02:00
2013-06-04 19:26:14 +02:00
## Download
2013-06-04 20:23:01 +02:00
Download this repository as a zip, and unpack. Copy the files to a web server that can run PHP. You can also run the documentation locally using Grunt.js, which is covered at the end of this readme.
2013-06-04 19:26:14 +02:00
## Folders
2013-06-04 20:23:01 +02:00
2013-06-04 19:26:14 +02:00
The generator will look for folders in the `/docs` folder. Add your folders inside the `/docs` folder. This project contains some example folders and files to get you started. It also contains a `Markdown Tests` folder which contains the official suite of tests for checking the functionality of the Markdown parser.
You can nest the folders any number of levels to get the exact structure you want. The folder structure will be converted to the nested navigation.
## Files
2013-06-04 20:23:01 +02:00
2013-06-04 19:26:14 +02:00
The generator will look for Markdown files inside the `/docs` folder and any of your subfolders.
2013-06-04 20:23:01 +02:00
You must use the `.md` file extension for your files. Also, you must use underscores instead of spaces. Here are some example file names and what they will be converted to:
2013-06-04 19:26:14 +02:00
2013-06-04 20:23:01 +02:00
**Good:**
2013-06-04 19:26:14 +02:00
2013-06-04 20:23:01 +02:00
* 01_Getting_Started.md = Getting Started
* API_Calls.md = API Calls
* 200_Something_Else-Cool.md = Something Else-Cool
**Bad:**
* File Name With Space.md = FAIL
2013-06-04 19:26:14 +02:00
## Sorting
2013-06-04 20:23:01 +02:00
To sort your files and folders in a specific way, you can prefix them with a number and underscore, e.g. `/docs/01_Hello_World.md` and `/docs/05_Features.md` This will list *Hello World* before *Features*, overriding the alpha-numeric sorting, which is the default. The numbers will be stripped out of the navigation.
2013-06-04 19:26:14 +02:00
## Configuration
2013-06-04 20:23:01 +02:00
To customize the look and feel of your documentation, you can create a `config.json` file in the of the `/docs` folder. The `config.json` file is a simple JSON object that you can use to change some of the basic settings of the documentation.
**Title:**
2013-06-04 19:26:14 +02:00
Change the title bar in the docs
{
"title": "TM-Docs the Todaymade Documentation Generator"
}
2013-06-04 20:23:01 +02:00
**Default Homepage:**
2013-06-04 19:26:14 +02:00
Set the default page someone is redirected to if they visit `/`
{
"homepage": "/Getting_Started"
}
2013-06-04 20:23:01 +02:00
**Bootstrap Theme:**
We support the 12 Bootstrap themes from Bootswatch. To use on of the themes, just set this option to the lowercase name of the theme.
2013-06-04 19:26:14 +02:00
View the <a href="http://bootswatch.com/" target="_blank">**Demos**</a>
{
"theme": "spacelab"
}
2013-06-04 20:23:01 +02:00
**Syntax Highlighting:**
We support all of the available themes for highlight.js. To use one of the themes, set this option to one of the available style names.
2013-06-04 19:26:14 +02:00
View the <a href="http://softwaremaniacs.org/media/soft/highlight/test.html" target="_blank">**Demos**</a>
View the <a href="https://github.com/isagalaev/highlight.js/tree/master/src/styles" target="_blank">**Possible Option Values**</a>
{
"hightlight": "dark"
}
2013-06-04 20:23:01 +02:00
**Github Repo:**
2013-06-04 19:26:14 +02:00
Add a 'Fork me on Github' ribbon.
{
"repo": "justinwalsh/tm-docs"
}
2013-06-04 20:23:01 +02:00
**Twitter:**
2013-06-04 19:26:14 +02:00
Include twitter follow buttons in the sidebar.
{
"twitter": ["justin_walsh", "todaymade"]
}
2013-06-04 20:23:01 +02:00
**Links:**
2013-06-04 19:26:14 +02:00
Include custom links in the sidebar.
{
"links": {
"Github Repo": "https://github.com/justinwalsh/tm-docs",
"Help/Support/Bugs": "https://github.com/justinwalsh/tm-docs/issues",
"Todaymade": "http://todaymade.com"
}
}
## Running Locally
You can run the docs locally using <a href="http://gruntjs.com/" target="_blank">Grunt.js</a>
**Requirements:**
2013-06-04 20:23:01 +02:00
2013-06-04 19:26:14 +02:00
* Node.js
* npm
* Grunt.js
* PHP 5.4 or greater
2013-06-04 20:23:01 +02:00
This project contains a package.json file, so once you have the requirements installed, you can simply run a `npm install` and then `grunt` in the projects folder to start the local web server. By default the server will run at: <a href="http://localhost:8085" target="_blank">http://localhost:8085</a>
2013-06-04 19:26:14 +02:00
2013-06-04 20:23:01 +02:00
## Support
2013-06-04 19:26:14 +02:00
If you need help using TM Docs, or have found a bug, please create an issue on the <a href="http://localhost:8085" target="_blank">Github repo</a>.