Useful Stuff
These references have been found useful at some stage in preparing the manuals.
-
Github Markdown Syntax Cheatsheet
-
Stop ci building when adding manuals
Add [skip ci] [skip appveyor] at the top of the commit message. This does not stop circleci builds at present, although the build does not result in a beta or master package. It generates an alpha.
-
Including images in PDF made using asciidoctor-pdf
-
Asciidoc Syntax (another reference)
-
Python Stuff
-
Pandoc
-
Convert all files in a folder using Pandoc
find ./ -iname "*.md" -type f -exec sh -c 'pandoc "${0}" -o "./output/$(basename ${0%.md}.adoc)"' {} \;
-
Bash