Files
remanso/src/data/DataType.enum.ts
Julien Calixte bf19e982fe feat(markdown): render TikZ fenced blocks to SVG
Adds a markdown-it extractor for ```tikz blocks that emits a sanitized
placeholder, plus a runTikz() that lazy-loads the obsidian-tikzjax 0.5.2
bundle from jsdelivr on first encounter, sanitizes the produced SVG with
DOMPurify, and caches it in PouchDB keyed by sha256(source) so repeat
views are instant and offline-capable.
2026-05-15 15:38:48 +02:00

13 lines
334 B
TypeScript

export enum DataType {
GithubAccessToken = "GithubAccessToken",
FavoriteRepo = "FavoriteRepo",
SavedRepo = "SavedRepo",
Note = "Note",
BacklinkNote = "BacklinkNote",
RepetitionCard = "RepetitionCard",
History = "History",
UserSettings = "UserSettings",
AtprotoSession = "AtprotoSession",
TikzCache = "TikzCache"
}