Metadata-Version: 2.3
Name: ontodoc
Version: 0.0.0
Summary: Generate easily your markdown documentation for any ontology
License: Apache-2.0
Keywords: Ontology,rdflib,jinja2,documentation,markdown
Author: StephaneBranly
Author-email: stephanebranly.pro@gmail.com
Requires-Python: >=3.8.1
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: jinja2 (>=3.1.6,<4.0.0)
Requires-Dist: rdflib (>=7.1.3,<8.0.0)
Project-URL: Source, https://github.com/StephaneBranly/ontodoc
Project-URL: Tracker, https://github.com/StephaneBranly/ontodoc/issues
Description-Content-Type: text/markdown

<p align="center">
<img src='https://github.com/StephaneBranly/ontodoc/blob/main/src/logo.png' height='200' alt='ontodoc logo' />
</p>

# ontodoc

A python module to generate markdown documentation for ontologies.

Based on `rdflib` and `jinja2`.

## Getting Started 🚀

### Installation

```shell
pip install ontodoc
```

### Command line usage

```shell
python -m ontodoc
```

By default, the file named `ontology.ttl` will be used to generate your documentation in the `build` destination folder.

You can easily change settings as you need.
Available arguments :

| Argument name                         | Default        | Description                                           |
| ------------------------------------- | -------------- | ----------------------------------------------------- |
| `-i, --input INPUT`                   | `ontology.ttl` | _Input ontology file_                                 |
| `-o, --output OUTPUT`                 | `build/`       | _Output directory for the generated documentation_    |
| `-t, --templates TEMPLATES`           | `templates/`   | _Custom templates folder_                             |
| `-f, --footer, --no-footer`           | `true`         | _Add footer for each page_                            |
| `-c, --concatenate, --no-concatenate` | `false`        | _Concatenate documentation into an unique file_       |
| `-s, --schema, --no-schema`           | `true`         | _Display schemas_                                     |
| `-m, --model MODEL`                   | `markdown`     | _Model type for the documentation. markdown, gh_wiki_ |

### Automatically generate your documentation

You can explore `github actions` to automatically generate and publish your documentation.

## Example 👀

Look at the [example for _foaf_](https://github.com/StephaneBranly/ontodoc/blob/main/example/build/homepage.md) to see what type of documentation you can easily build in 2 lines!

## How does it work ? 🔧

```mermaid
flowchart LR
 subgraph s1["Ontodoc"]
        n5["Markdown human readable documentation"]
        n8["Markdown templates"]
        n4["Structured ontology description"]
        n9["Command Line Interface"]
  end
    n4 --> n5
    n8 --> n5
    n7(("Ontology")) --> n9
    n9 --> n4
    n9 -.-> n8

    n4@{ shape: braces}
    n9@{ shape: text}
```

## Contributing </>

Feel free to contribute to this open source project!

We need help to implement new features, fix bugs listed in [issues](https://github.com/StephaneBranly/ontodoc/issues).

If you have any idea, create your own issue.

## License 🔓

[Apache License 2.0](https://github.com/StephaneBranly/ontodoc/blob/main/LICENCE.txt)

## They already have integrated Ontodoc ♥️

_Comming soon..._

