Skip to content

Commit

Permalink
Merge pull request #5 from rslifka/main
Browse files Browse the repository at this point in the history
Tweaks to converter class inclusion
  • Loading branch information
Ice-mourne committed Feb 6, 2024
2 parents 2a410c2 + b8818f1 commit 5510a89
Showing 1 changed file with 24 additions and 19 deletions.
43 changes: 24 additions & 19 deletions src/converterSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,23 +343,25 @@ export const converterSettings: { [key: string]: DescriptionFilter } = {
table: false,
weaponTypes: false,
includeClassNames: [
'spacer',
'enhancedArrow',

'stasis',
'arc',
'solar',
'void',
'stasis',
'strand',
'void',

'primary',
'special',
'heavy',


'barrier',
'overload',
'unstoppable',

'pve',
'pvp',

'background',
'bold'
],
excludeClassNames: []
Expand All @@ -369,21 +371,24 @@ export const converterSettings: { [key: string]: DescriptionFilter } = {
optional: true,
toStringConverterOptions: {
classNames: {
stasis: ['[stasis]', ''],
arc: ['[arc]', ''],
solar: ['[solar]', ''],
void: ['[void]', ''],
strand: ['[strand]', ''],

primary: ['[primary]', ''],
special: ['[special]', ''],
heavy: ['[heavy]', ''],
arc: ['[Arc]', ''],
solar: ['[Solar]', ''],
stasis: ['[Stasis]' , ''],
strand: ['[Strand]', ''],
void: ['[Void]' , ''],

primary: ['[primary]', ''],
special: ['[special]', ''],
heavy: ['[heavy]' , ''],

barrier: ['[barrier]', ''],
overload: ['[overload]', ''],
unstoppable: ['[unstoppable]', ''],

pve: ['[pve]', ''],
pvp: ['[pvp]', ''],

pve: ['[pve]', ''],
pvp: ['[pvp]', ''],

background: ['**', '**'],
bold: ['**', '**']
bold: ['**', '**']
},
link: ['[', ']', '(', ')']
}
Expand Down

0 comments on commit 5510a89

Please sign in to comment.