Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
Benchmarks.md | 21-Aug-2018 | 4.8K | |
Building.md | 21-Aug-2018 | 2.9K | |
Compiler.md | 21-Aug-2018 | 5.1K | |
CONTRIBUTING.md | 21-Aug-2018 | 2.2K | |
CppUsage.md | 21-Aug-2018 | 20.6K | |
CUsage.md | 21-Aug-2018 | 8.1K | |
doxyfile | 21-Aug-2018 | 99.9K | |
doxygen_layout.xml | 21-Aug-2018 | 8K | |
FlatBuffers.md | 21-Aug-2018 | 8.3K | |
FlexBuffers.md | 21-Aug-2018 | 6.9K | |
GoApi.md | 21-Aug-2018 | 1.2K | |
GoApi_generated.txt | 21-Aug-2018 | 4.5K | |
GoUsage.md | 21-Aug-2018 | 3.7K | |
Grammar.md | 21-Aug-2018 | 1.7K | |
groups | 21-Aug-2018 | 576 | |
gRPC/ | 21-Aug-2018 | ||
Internals.md | 21-Aug-2018 | 19.3K | |
JavaCsharpUsage.md | 21-Aug-2018 | 6.9K | |
JavaScriptUsage.md | 21-Aug-2018 | 4K | |
PHPUsage.md | 21-Aug-2018 | 3.3K | |
PythonUsage.md | 21-Aug-2018 | 3.9K | |
README_TO_GENERATE_DOCS.md | 21-Aug-2018 | 1.1K | |
Schemas.md | 21-Aug-2018 | 23.9K | |
style.css | 21-Aug-2018 | 5.4K | |
Support.md | 21-Aug-2018 | 2.7K | |
Tutorial.md | 21-Aug-2018 | 66.9K | |
WhitePaper.md | 21-Aug-2018 | 5.6K |
1 ## Prerequisites 2 3 To generate the docs for FlatBuffers from the source files, you 4 will first need to install two programs. 5 6 1. You will need to install `doxygen`. See 7 [Download Doxygen](http://www.stack.nl/~dimitri/doxygen/download.html). 8 9 2. You will need to install `doxypypy` to format python comments appropriately. 10 Install it from [here](https://github.com/Feneric/doxypypy). 11 12 *Note: You will need both `doxygen` and `doxypypy` to be in your 13 [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable.* 14 15 After you have both of those files installed and in your path, you need to 16 set up the `py_filter` to invoke `doxypypy` from `doxygen`. 17 18 Follow the steps 19 [here](https://github.com/Feneric/doxypypy#invoking-doxypypy-from-doxygen). 20 21 ## Generating Docs 22 23 Run the following commands to generate the docs: 24 25 `cd flatbuffers/docs/source` 26 `doxygen` 27 28 The output is placed in `flatbuffers/docs/html`. 29 30 *Note: The Go API Reference code must be generated ahead of time. For 31 instructions on how to regenerated this file, please read the comments 32 in `GoApi.md`.* 33