diff options
| author | Christoph Schlosser <christoph@linux.com> | 2018-03-02 23:24:50 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-03-02 23:47:28 +0100 |
| commit | aeb67cd13dcf5e5b69898dff6c05c605a81827f4 (patch) | |
| tree | 1e5809b1f9957b02cb7f3d54ad4c5a95cb502e0e /src/Config.ts | |
| parent | 8701d74ba4672c0d916fc01f950f5a7cc1298881 (diff) | |
| download | doxdocgen-aeb67cd13dcf5e5b69898dff6c05c605a81827f4.tar.gz | |
Add brief template
Diffstat (limited to 'src/Config.ts')
| -rw-r--r-- | src/Config.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Config.ts b/src/Config.ts index 0fcd5a2..a0bae83 100644 --- a/src/Config.ts +++ b/src/Config.ts @@ -42,7 +42,7 @@ class Generic { public includeTypeAtReturn: boolean = true; public boolReturnsTrueFalse: boolean = true; - public briefTemplate: string = "@brief "; + public briefTemplate: string = "@brief {text}"; public paramTemplate: string = "@param {param} "; public returnTemplate: string = "@return {type} "; public linesToGet: number = 20; @@ -93,6 +93,7 @@ export class Config { public readonly typeTemplateReplace: string = "{type}"; public readonly nameTemplateReplace: string = "{name}"; public readonly dateTemplateReplace: string = "{date}"; + public readonly textTemplateReplace: string = "{text}"; public C: C; public Cpp: Cpp; |