Skip to content

Commit

Permalink
Added italics and bold tags (#59)
Browse files Browse the repository at this point in the history
* feat(templates): added italics and bold tags
  • Loading branch information
EddieDover committed Feb 19, 2024
1 parent 334a165 commit ec4fc22
Show file tree
Hide file tree
Showing 5 changed files with 2,281 additions and 228 deletions.
47 changes: 47 additions & 0 deletions .versionrc
@@ -0,0 +1,47 @@
{
"header": "",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
],
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "src/module.json",
"type": "json"
}
]
}
2 changes: 2 additions & 0 deletions TEMPLATE_README.md
Expand Up @@ -179,6 +179,8 @@ There are a few special keywords that must be surrounded by { } marks, to allow
* {newline} - Adds a line break to the text rendered.
* {charactersheet} - Inserts a clickable image of the character that will open their character sheet.
* {+} - Adds the values of two objects and outputs the result, i.e. `system.attributes.str {+} system.attributes.wis` will output the character's str and wis added together.
* {i} & {/i} - Anything between these tags will be displayed in _italics_
* {b} & {/b} - Anything between these tags will be displayed in **bold**

### Direct-Complex Object

Expand Down

0 comments on commit ec4fc22

Please sign in to comment.