Documentation generator for DBML specification format
Project description
DBML Docs Generator for Foliant
This preprocessor generates Markdown documentation from DBML specification files . It uses PyDBML for parsing DBML syntax and Jinja2 templating engine for generating Markdown.
Installation
$ pip install foliantcontrib.dbmldoc
Config
To enable the preprocessor, add dbmldoc
to preprocessors
section in the project config:
preprocessors:
- dbmldoc
The preprocessor has a number of options:
preprocessors:
- dbmldoc:
spec_url: http://localhost/scheme.dbml
spec_path: scheme.dbml
doc: true
scheme: true
template: dbml.j2
scheme_template: scheme.j2
spec_url
: URL to DBML spec file. If it is a list — preprocessor uses the first url which works.
spec_path
: Local path to DBML spec file (relative to project dir).
If both url and path params are specified — preprocessor first tries to fetch spec from url, and only if that fails looks for the file on the local path.
doc
: If true
— documentation will be generated. Set to false
if you only want to draw a scheme of the database. Default true
scheme
: If true
— the platuml code for database scheme will be generated. Default true
template
: Path to jinja-template for rendering the generated documentation. Path is relative to the project directory. If no template is specified preprocessor will use default template (and put it into project dir if it was missing). Default: dbml.j2
Note that the default template may be outdated. Please check if everything works, and if needed — update the template.
scheme_template
: Path to jinja-template for generating planuml code for the database scheme. Path is relative to the project directory. If no template is specified preprocessor will use default template (and put it into project dir if it was missing). Default: scheme.j2
Usage
Add a <dbmldoc></dbmldoc>
tag at the position in the document where the generated documentation should be inserted:
# Introduction
This document contains the automatically generated documentation of our Database schema.
<dbmldoc></dbmldoc>
Each time the preprocessor encounters the tag <dbmldoc></dbmldoc>
it inserts the whole generated documentation text instead of it. The path or url to DBML spec file is taken from foliant.yml.
You can also override some parameters (or all of them) in the tag options:
# Introduction
Introduction text for API documentation.
<dbmldoc spec_url="http://localhost/schema.dbml"
template="dbml.j2"
scheme="false">
</dbmldoc>
# Database scheme
And here goes a visual diagram of our database:
<dbmldoc doc="false" scheme="true">
</dbmldoc>
Note that template path in tag is stated relative to the markdown file.
Tag parameters have the highest priority.
This way you can put your database description in one place and its diagram in the other (like in the example above). Or you can even have documentation from several different DBML spec files in one Foliant project.
Customizing output
The output markdown is generated by the Jinja2 template. Inside the template all data from the parsed DBML file is available under the data
variable. It is in fact a PyDBMLParseResults
object, as returned by PyDBML (see the docs to find out which attributes are available).
To customize the output create a template which suits your needs. Then supply the path to it in the template
parameter. Same goes for the scheme template, which is defined in the scheme_template
parameter.
If you wish to use the default template as a starting point, build the foliant project with dbmldoc
preprocessor turned on. After the first build the default templates will appear in your foliant project dir under the names dbml.j2
and scheme.j2
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file foliantcontrib.dbmldoc-0.3.4.tar.gz
.
File metadata
- Download URL: foliantcontrib.dbmldoc-0.3.4.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d09701edb6d8c21e073f1d7ac7346c0b602e41468d39fe5996708a3b472f038 |
|
MD5 | c19de3457cecd8b517092af6cc89f6ab |
|
BLAKE2b-256 | fdd69c1099bcf9a1f50df0f75af8de44f4c6eb623af34c8f9696322f04de94da |
File details
Details for the file foliantcontrib.dbmldoc-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: foliantcontrib.dbmldoc-0.3.4-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2583764b115dbeed2a6ff2cca77f99f65cba64d13e571571396b461b0607f82 |
|
MD5 | 37ad41a5f391fcded68c6d3c17b5085a |
|
BLAKE2b-256 | a61d3645c4c07a1cf04f1c74db996c31d797f8a4b73342eb00ecd5c8c7a2a15f |