Improve layer docs generation

This commit is contained in:
Pieter Vander Vennet 2022-04-08 01:55:42 +02:00
parent 6e3dd6a8d5
commit edb5b06f12
2 changed files with 14 additions and 1 deletions

View file

@ -13,6 +13,9 @@ export class FixedUiElement extends BaseUIElement {
}
AsMarkdown(): string {
if(this.HasClass("code")){
return "`"+this.content+"`"
}
return this.content;
}