Home | History | Annotate | only in /external/flatbuffers/docs/source
Up to higher level directory
NameDateSize
Benchmarks.md22-Oct-20204.8K
Building.md22-Oct-20204.6K
Compiler.md22-Oct-20207.4K
CONTRIBUTING.md22-Oct-20202.2K
CppUsage.md22-Oct-202023.6K
CUsage.md22-Oct-20208.1K
DartUsage.md22-Oct-20205K
doxyfile22-Oct-2020100.1K
doxygen_layout.xml22-Oct-20208.4K
FlatBuffers.md22-Oct-20208.9K
FlexBuffers.md22-Oct-20206.9K
GoApi.md22-Oct-20201.2K
GoApi_generated.txt22-Oct-20204.5K
GoUsage.md22-Oct-20203.7K
Grammar.md22-Oct-20202.2K
groups22-Oct-2020675
gRPC/22-Oct-2020
Internals.md22-Oct-202019.3K
JavaCsharpUsage.md22-Oct-20206.9K
JavaScriptUsage.md22-Oct-20204K
LobsterUsage.md22-Oct-20203.3K
LuaUsage.md22-Oct-20203K
PHPUsage.md22-Oct-20203.3K
PythonUsage.md22-Oct-20203.9K
README_TO_GENERATE_DOCS.md22-Oct-20201.1K
RustUsage.md22-Oct-20207.6K
Schemas.md22-Oct-202025.8K
style.css22-Oct-20205.4K
Support.md22-Oct-20203.3K
Tutorial.md22-Oct-202095.9K
TypeScriptUsage.md22-Oct-20202.4K
WhitePaper.md22-Oct-20205.6K

README_TO_GENERATE_DOCS.md

      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