ontocore-docs 0.12.0

Markdown and HTML documentation export for OntoCore workspaces
Documentation

ontocore-docs

Part of OntoCore (semantic workspace engine). New in v0.11.

Export ontology workspace catalogs to Markdown and HTML documentation.

CLI

ontocore docs ./ontologies --format markdown --output ./docs-out
ontocore docs ./ontologies --format html --output ./docs-out

Library

use ontocore_docs::{export_workspace, ExportFormat, ExportOptions};
use ontocore_catalog::OntologyCatalog;

let catalog = /* from Workspace */;
export_workspace(&catalog, ExportOptions::markdown("./out"))?;

Documentation

License

MIT OR Apache-2.0