TagRenderingConfig: fix 'leftovers' of multi-answer freeform, generateDocs now generates Markdown instead of a BaseUIElement, add 'postfixDistinguished'-option for 'charge'-key

This commit is contained in:
Pieter Vander Vennet 2024-06-06 03:16:36 +02:00
parent 53ef1b947d
commit 3a69157d10
4 changed files with 138 additions and 92 deletions

View file

@ -16,4 +16,7 @@ export default class MarkdownUtils {
return result
}
static list(strings: string[]): string {
return strings.map(item => " - "+item).join("\n")
}
}