diff options
| author | Dean Anderson <dean@locomation.ai> | 2018-09-27 16:51:01 -0400 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-09-29 19:08:20 +0200 |
| commit | 4939806ae705953cfc1ca8cf54f20d98e9be9d03 (patch) | |
| tree | 71c291d9c5edd2927f350b2dbdf738ca7ff6dfbf /package.json | |
| parent | d3452b0a1e9f4424591b5621ee107a95a61300d5 (diff) | |
| download | doxdocgen-4939806ae705953cfc1ca8cf54f20d98e9be9d03.tar.gz | |
customTag will supply ISO date format if user configured format empty
Added separate templates for author name {author} and email {email}
Added method to make multiple template substitutions in a string
customTag will now replace {author}, {email}, {date} and {year} templates
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/package.json b/package.json index a6112da..1aed081 100644 --- a/package.json +++ b/package.json @@ -141,10 +141,20 @@ "type": "number", "default": 20 }, + "doxdocgen.generic.authorName": { + "description": "Set the name of the author. Replaces {author}.", + "type": "string", + "default": "your name" + }, + "doxdocgen.generic.authorEmail": { + "description": "Set the e-mail address of the author. Replaces {email}.", + "type": "string", + "default": "you@domain.com" + }, "doxdocgen.generic.authorTag": { "description": "Set the style of the author tag and your name.", "type": "string", - "default": "@author your name" + "default": "@author {author} ({email})" }, "doxdocgen.generic.dateTemplate": { "description": "The template for the date parameter in Doxygen.", |