Improve documentation

This commit is contained in:
Pieter Vander Vennet 2022-12-08 00:48:44 +01:00
parent ae146606e0
commit 4d930ae985
123 changed files with 4874 additions and 4239 deletions

View file

@ -16,6 +16,9 @@ export class FixedUiElement extends BaseUIElement {
if (this.HasClass("code")) {
return "`" + this.content + "`"
}
if (this.HasClass("font-bold")) {
return "*" + this.content + "*"
}
return this.content
}