From 6b3547e11670e7595e2f57cc90693d2da6cba2bf Mon Sep 17 00:00:00 2001 From: Philippe Le Van Date: Fri, 16 Feb 2024 14:51:53 +0100 Subject: [PATCH] added flowchart --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5754f76..80cd0f9 100644 --- a/README.md +++ b/README.md @@ -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
in DOCX or ODT] + json[Data
JSON] + lotemplate[LO Template] + generatedFile[Generated File
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.