Skip to content

Commit

Permalink
WIP: Add support for templates
Browse files Browse the repository at this point in the history
Update configuration schema to match reflect moved 'markdownPreset' setting
  • Loading branch information
ap0llo committed Jun 20, 2020
1 parent 435108a commit e454742
Showing 1 changed file with 24 additions and 20 deletions.
44 changes: 24 additions & 20 deletions schemas/configuration/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,6 @@
"title": "Command Line Help: Include AutoGenerated Notice",
"description": "Controls whether the generated documentation includes a comment that indicates the files were auto-generated."
},
"markdownPreset": {
"type": "string",
"enum": [
"Default",
"MkDocs"
],
"title": "Command Line Help: Markdown Preset",
"description": "Customizes serialization of Markdown."
},
"template": {
"$ref": "#/definitions/commandlinehelpTemplateConfiguration",
"description": "Specifies settings for templates."
Expand All @@ -92,7 +83,18 @@
}
},
"commandlinehelpDefaultTemplateConfiguration": {
"type": "object"
"type": "object",
"properties": {
"markdownPreset": {
"type": "string",
"enum": [
"Default",
"MkDocs"
],
"title": "Command Line Help: Markdown Preset",
"description": "Customizes serialization of Markdown."
}
}
},
"apireferenceConfiguration": {
"type": "object",
Expand Down Expand Up @@ -127,15 +129,6 @@
"title": "API Reference: Include AutoGenerated Notice",
"description": "Controls whether the generated documentation includes a comment that indicates the files were auto-generated."
},
"markdownPreset": {
"type": "string",
"enum": [
"Default",
"MkDocs"
],
"title": "API Reference: Markdown Preset",
"description": "Customizes serialization of Markdown."
},
"template": {
"$ref": "#/definitions/apireferenceTemplateConfiguration",
"description": "Specifies settings for templates."
Expand All @@ -160,7 +153,18 @@
}
},
"apireferenceDefaultTemplateConfiguration": {
"type": "object"
"type": "object",
"properties": {
"markdownPreset": {
"type": "string",
"enum": [
"Default",
"MkDocs"
],
"title": "API Reference: Markdown Preset",
"description": "Customizes serialization of Markdown."
}
}
}
}
}

0 comments on commit e454742

Please sign in to comment.