summaryrefslogtreecommitdiffstats
path: root/src/Config.ts
diff options
context:
space:
mode:
authorChristoph Schlosser <2466365+cschlosser@users.noreply.github.com>2020-10-03 17:15:04 +0200
committerGitHub <noreply@github.com>2020-10-03 17:15:04 +0200
commit15dcabb5903b68bbc8b490b1d0e220d13acf63b7 (patch)
treea62d3347ba3cf1c3044ca2b153f6374af56dec6c /src/Config.ts
parent2af50bd62c2e26975a46b499c1c687be42be80a1 (diff)
downloaddoxdocgen-15dcabb5903b68bbc8b490b1d0e220d13acf63b7.tar.gz
Add custom tags to generic order (#173)
Diffstat (limited to 'src/Config.ts')
-rw-r--r--src/Config.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Config.ts b/src/Config.ts
index 1d942a1..51aebc3 100644
--- a/src/Config.ts
+++ b/src/Config.ts
@@ -57,6 +57,7 @@ class Generic {
public generateSmartText: boolean = true;
public splitCasingSmartText: boolean = true;
public order: string[] = ["brief", "empty", "tparam", "param", "return"];
+ public customTags: string[] = [];
public filteredKeywords: string[] = [];
}
@@ -96,6 +97,7 @@ export class Config {
values.Generic.generateSmartText = Generic.getConfiguration().get<boolean>("generateSmartText", values.Generic.generateSmartText);
values.Generic.splitCasingSmartText = Generic.getConfiguration().get<boolean>("splitCasingSmartText", values.Generic.splitCasingSmartText);
values.Generic.order = Generic.getConfiguration().get<string[]>("order", values.Generic.order);
+ values.Generic.customTags = Generic.getConfiguration().get<string[]>("customTags", values.Generic.customTags);
values.Generic.filteredKeywords = Generic.getConfiguration().get<string[]>("filteredKeywords", values.Generic.filteredKeywords);
return values;