From a27b70d4503694e5b97c78af31f1d404e97c3156 Mon Sep 17 00:00:00 2001 From: Michael Clemens Date: Mon, 19 Mar 2018 21:21:55 +0100 Subject: [PATCH] added ini file, switched to Python2, implemented screenshot feature --- esm2markdown.ini | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 esm2markdown.ini diff --git a/esm2markdown.ini b/esm2markdown.ini new file mode 100644 index 0000000..2ca46d1 --- /dev/null +++ b/esm2markdown.ini @@ -0,0 +1,20 @@ +[config] +# Configure here the style of keys and values e.g. to bold or italic. +# Default: Keys are displayed in bold, values have no specific style +key_style = ** +value_style = + +# Configure here how your lists will look like in Markdown +level1 = * " +level2 = " * " +level3 = " * " + +# Configure here if Rules should be alphabetically sorted or not +sort_rules = True + +# Configure TOC generation +toc = True + +# Configure inclusion of images +images = False +imagepath = images