Improve markdown rendering

This commit is contained in:
rugk 2016-07-03 17:45:37 +02:00 committed by GitHub
parent 89f697fe5d
commit 7fbb42fb9f

View File

@ -10,10 +10,14 @@ Details about [installing phpDocumentor](http://phpdoc.org/docs/latest/getting-s
can be found in its own documentation. can be found in its own documentation.
Example for Debian and Ubuntu: Example for Debian and Ubuntu:
$ sudo aptitude install php-pear graphviz ```console
$ sudo pear channel-discover pear.phpdoc.org $ sudo aptitude install php-pear graphviz
$ sudo pear install phpdoc/phpDocumentor $ sudo pear channel-discover pear.phpdoc.org
$ sudo pear install phpdoc/phpDocumentor
```
To generate the documentation, change into the main directory and run phpdoc: To generate the documentation, change into the main directory and run phpdoc:
$ cd ZeroBin ```console
$ phpdoc -d lib/ -t doc/ $ cd ZeroBin
$ phpdoc -d lib/ -t doc/
```