mirror of
https://git.maid.zone/stuff/soundcloak.git
synced 2025-12-10 05:39:38 +05:00
27 lines
543 B
Plaintext
27 lines
543 B
Plaintext
package templates
|
|
|
|
import (
|
|
"git.maid.zone/stuff/soundcloak/lib/cfg"
|
|
"git.maid.zone/stuff/soundcloak/lib/textparsing"
|
|
)
|
|
|
|
templ Description(prefs cfg.Preferences, text string, injected templ.Component) {
|
|
if text != "" || injected != nil {
|
|
<details>
|
|
<summary>Description</summary>
|
|
<p style="white-space: pre-wrap;">
|
|
if text != "" {
|
|
if *prefs.ParseDescriptions {
|
|
@templ.Raw(textparsing.Format(text))
|
|
} else {
|
|
{ text }
|
|
}
|
|
}
|
|
if injected != nil {
|
|
@injected
|
|
}
|
|
</p>
|
|
</details>
|
|
}
|
|
}
|