No description
Find a file
2023-01-29 11:26:09 +02:00
pandoc-docker/latex Made dockerfile modjular 2023-01-28 15:41:00 +02:00
src Made dockerfile modjular 2023-01-28 15:41:00 +02:00
.cz-config.js Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
.cz.json Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
.dockerignore Made dockerfile modjular 2023-01-28 15:41:00 +02:00
.editorconfig Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
.gitattributes Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
.gitignore Added mermaid example to readme 2023-01-29 11:26:09 +02:00
.gitlab-ci.yml Renamed gitlab-ci job 2023-01-28 15:48:04 +02:00
ATTRIBUTIONS.md Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
CHANGELOG.md Deploying v1 2023-01-28 15:51:20 +02:00
CODE_OF_CONDUCT.md Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
CONTRIBUTING.md Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
CONTRIBUTORS.md Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
docker-compose.yml Made dockerfile modjular 2023-01-28 15:41:00 +02:00
Dockerfile Bumping base image version to v5 2023-01-28 23:56:24 +02:00
LICENSE Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
NOTICE Initial version of a docker container that simply redirects ngix connections. 2020-10-06 23:49:13 -04:00
README.md Added mermaid example to readme 2023-01-29 11:26:09 +02:00

Usage

docker run -w /foo -v "${PWD}:/foo" --privileged -it modjular/latex-pandoc-mermaid-plantuml pandoc -s -N README.md -o README.pdf --filter pandoc-plantuml --filter mermaid-filter

Examples

This is an example of plantuml:

@startuml
class Car
Driver - Car : drives >
Car *- Wheel : have 4 >
Car -- Person : < owns
@enduml

This is a mermaid example:

gantt
	dateFormat  YYYY-MM-DD
	title Adding GANTT diagram functionality to mermaid
	section A section
	Completed task            :done,    des1, 2014-01-06,2014-01-08
	Active task               :active,  des2, 2014-01-09, 3d
	Future task               :         des3, after des2, 5d
	Future task2               :         des4, after des3, 5d
	section Critical tasks
	Completed task in the critical line :crit, done, 2014-01-06,24h
	Implement parser and jison          :crit, done, after des1, 2d
	Create tests for parser             :crit, active, 3d
	Future task in critical line        :crit, 5d
	Create tests for renderer           :2d
	Add to mermaid                      :1d