Document the "template" option

Fixes #695.
This commit is contained in:
Thaddee Tyl 2016-07-03 20:46:37 +02:00
parent 8a648fa156
commit ceaa17d2cc

View File

@ -71,10 +71,13 @@ The format is the following:
/* Textual information shown, in order. */ /* Textual information shown, in order. */
"text": [ "build", "passed" ], "text": [ "build", "passed" ],
"format": "svg", // Also supports "json". "format": "svg", // Also supports "json".
"colorscheme": "green" "colorscheme": "green",
/* … Or… */ /* … Or… */
"colorA": "#555", "colorA": "#555",
"colorB": "#4c1" "colorB": "#4c1",
/* See template/ for a list of available templates.
Each offers a different visual design. */
"template": "flat"
} }
``` ```