Remove HTML from stored data for entries

HTML will be rendered for entries derived from the plain text (at least,
I think).
This commit is contained in:
Campbell Alden 2026-08-15 00:13:15 +09:00
parent 5060f6a97f
commit 81bad03ebd
2 changed files with 1 additions and 3 deletions

View file

@ -6,7 +6,6 @@ from dataclasses import dataclass, field
class Entry:
id: int
text: str
html: str | None = None
@dataclass