diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2014-12-31 10:50:04 +0100 |
---|---|---|
committer | Alberto Bertogli <albertito@blitiri.com.ar> | 2015-01-11 22:18:00 +0100 |
commit | 605421f2d6696db307309aa7b454ff368c2ba742 (patch) | |
tree | 5364f40b240a691b71cd564ea40562660b5c24f8 | |
parent | df00293a7cd6e3fb11d0c1bf2fbf1c3ad485824c (diff) | |
download | git-arr-fork-605421f2d6696db307309aa7b454ff368c2ba742.zip |
sample.conf: document embed_markdown and embed_images
These repo-specific options were added in 54026b75 (Make embedding
markdown and images configurable per-repo, 2013-11-02) but not
documented.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
-rw-r--r-- | sample.conf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sample.conf b/sample.conf index 5a4db22..2ad25f0 100644 --- a/sample.conf +++ b/sample.conf @@ -48,6 +48,15 @@ path = /srv/git/repo/ # excluded. #recursive = no +# Render Markdown blobs (*.md) formatted rather than as raw text? (optional) +# Requires 'markdown' module. +# Default: yes +#embed_markdown = yes + +# Render image blobs graphically rather than as raw binary data? (optional) +# Default: no +#embed_images = no + # Another repository, we don't generate a tree for it because it's too big. [linux] |