dev-master
9999999-dev
MIT
The Requires
- php >=5.3.0
- illuminate/support 4.0.x
- dflydev/markdown 1.0.*
by Ryan Tablada
Wallogit.com
2017 © Pedro Peláez
This clean Markdown utility allows you to make awesome documentation quickly., (*1)
Simply run php artisan package:install rtablada/flat-docs, (*2)
In your composer.json add 'rtablada/flat-docs': 'dev-master', (*3)
Then in your app/config/app.php add this to your Service Providers
'Rtablada\FlatDocs\FlatDocsServiceProvider',, (*4)
Finally run these few commands:, (*5)
php artisan asset:publish rtablada/flat-docs php artisan config:publish rtablada/flat-docs
You can modify the configuration, (*6)
Register the docs you would like available by modifying the 'registeredDocs' property in the config file. This will handle URI mapping as well as creating your navigation! Also, you can declare stubs vs. Pretty Titles by using the format stub:pretty. By the way, there is no limitation to the depths of your uris/documents!, (*7)
'registeredDocs' => array(
'start:Getting Started',
'api' => array(
'1:endpoint1',
'2:endpoint2',
),
),
In your app path, place your docs in a 'docs' folder (this location can be modified in the config). There order should match the way you want your uris. So the file tree for the example would look like:, (*8)
start.md
api/
-1.md
-2.md
MIT