Generates HTML documentation explaining all of configuration fields (#2952)

* create HTML documentation explaining all of schema's configuration fields
This commit is contained in:
IvanCherepov 2018-01-24 14:09:29 -05:00 committed by GitHub
parent e2c1547df6
commit c228734978
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 1320 additions and 0 deletions

View file

@ -0,0 +1,78 @@
body {
font-family: sans-serif;
}
pre, code{
white-space: normal;
}
div.root docs{
display: none;
}
div.name {
display: inline;
}
div.type {
display: inline;
font-weight: bold;
color: blue;
}
div.required {
display: inline;
font-weight: bold;
}
div.docs {
display: block;
}
div.title {
display: block;
font-weight: bold;
}
div.description {
display: block;
font-family: serif;
font-style: italic;
}
div.enum {
display: block;
font-family: serif;
font-style: italic;
}
div.x-example {
display: block;
font-family: serif;
font-style: italic;
margin-bottom: 10px;
}
div.pattern {
display: block;
font-family: serif;
font-style: italic;
}
div.x-reference {
display: block;
font-family: serif;
font-style: italic;
}
div.uniqueItems {
display: block;
}
div.minItems {
display: block;
}
div.maxItems {
display: block;
}