Docwriter is an API documentation generator for the FreeeType Library that extracts and builds Markdown docs from the FreeType header files.
Run pip install docwriter
. It requires Python 2.7+ or 3.4+ to run.
-
Clone this repository.
-
Clone the freetype2 repository from here.
-
Convert the
include/
folder to markdown using the freetype-docs repository. -
Copy files from
include_mark/
. -
Run:
python -m docwriter --prefix=ft2 --title=FreeType-2.9.1 --output=./docs/reference \ ./include_mark/freetype/*.h ./include_mark/freetype/config/*.h ./include_mark/freetype/cache/*.h
docwriter [-h] [-t T] -o DIR [-p PRE] [-q | -v] files [files ...]
DocWriter Usage information
positional arguments:
files list of source files to parse, wildcards are allowed
optional arguments:
-h, --help show this help message and exit
-t T, --title T set project title, as in '-t "My Project"'
-o DIR, --output DIR set output directory, as in '-o mydir'
-p PRE, --prefix PRE set documentation prefix, as in '-p ft2'
-q, --quiet run quietly, show only errors
-v, --verbose increase output verbosity
There are two possible test scenarios:
- Running tests on both py27 and py36 (using tox - requires both python versions installed).
- Running tests on the currently installed Python version.
They are detailed below.
To test on both py27 and py36:
-
Make sure
tox
is installed:pip install tox
-
Ensure both py27 and py36 are installed.
-
Run tests:
tox
To test on current python version using pytest:
-
Make sure
pytest
is installed:pip install pytest
-
Run tests:
cd tests/ python -m pytest
This library is licensed under the FreeType License.
This library was originally written by David Turner as docmaker
which collected and presented
documentation in HTML. It has since been modified multiple times, including a major refactor
to allow multiple output formats. The current docwriter
is the biggest rewrite, with lots of
changes, additions etc. that allow it to be more flexible, readable, maintainable and usable.