mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 08:15:30 +03:00
CF - restore docs folder from master_v1.x
This commit is contained in:
parent
6a869f05f6
commit
f9f41530bf
143 changed files with 9321 additions and 0 deletions
20
docs/development/Building Manual.md
Executable file
20
docs/development/Building Manual.md
Executable file
|
@ -0,0 +1,20 @@
|
|||
#Building Manual.
|
||||
|
||||
The manual PDF file is generated by concatenating relevant markdown files and by transforming the result using Gimli to obtain the final PDF file. This steps are handled automatically by the ```build_docs.sh``` script located in the root of the repository next to the Makefile.
|
||||
|
||||
##Requirements & Installation
|
||||
The PDF manual generation uses the Gimli for the conversion. It can be installed via ruby gems. On Debian based systems the installation steps are:
|
||||
```bash
|
||||
sudo apt-get install ruby1.9.1 ruby1.9.1-dev rubygems zlib1g-dev wkhtmltopdf libxml2-dev libxslt-dev
|
||||
sudo gem1.9.1 install gimli
|
||||
```
|
||||
|
||||
##Configuration
|
||||
All markdown files need to be registered in the ```build_manual.sh``` file individually by modifying the ```doc_files``` variable / array:
|
||||
```bash
|
||||
doc_files=( 'Configuration.md'
|
||||
'Board - CC3D.md'
|
||||
'...'
|
||||
'...'
|
||||
)
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue