Skip to content

Commit

Permalink
added flowchart
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe-levan committed Feb 16, 2024
1 parent b7ae193 commit 6b3547e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,22 @@ LOTemplate is document generator used to create documents programatically (ODT,

Templates are Word or Libreoffice documents (ODT or DOCX).

```mermaid
flowchart LR
template[Template<br/>in DOCX or ODT]
json[Data<br/>JSON]
lotemplate[LO Template]
generatedFile[Generated File<br/>PDF, DOCX, ODT]
template --> lotemplate
json --> lotemplate
lotemplate --> generatedFile
```

What makes this tool different from others are the following features :

* The templates are in DOCS or ODT format
* Template can have complex structures (loop, conditions, counters, html,...)
* Template can have complex structures (variables, loop, conditions, counters, html,...)
* The tool can scan the template to extract the variables sheet
* The tool can be called by an API, a CLI or a python module.

Expand Down

0 comments on commit 6b3547e

Please sign in to comment.