From b1e096c22ef3cef960675590b97ccbcb234a588f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr> Date: Mon, 19 Nov 2018 23:40:11 +0100 Subject: [PATCH] Add build output concat odt file --- .gitignore | 4 ++++ build.sh | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 .gitignore create mode 100755 build.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9c39379 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.pdf +*.docx +*.odt +*.log diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..cf76b1f --- /dev/null +++ b/build.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +#sudo apt-get install pandoc +cat ./README.md ./COMMON.md ./SECURITY.md ./DATABASES.md ./WEB.md ./PHP.md ./PHP-SYMFONY.md > ./test.md +pandoc --from=markdown --to=odt --output=test.odt ./test.md +rm ./test.md -- GitLab