3 namespace BookStack\Entities\Models;
5 interface HtmlDescriptionInterface
8 * Get the HTML-based description for this item.
9 * By default, the content should be sanitised unless raw is set to true.
11 public function descriptionHtml(bool $raw = false): string;
14 * Set the HTML-based description for this item.
16 public function setDescriptionHtml(string $html, string|null $plaintext = null): void;