use the font Ysabeau Office

This commit is contained in:
Christian Lawson-Perfect 2025-02-11 14:19:16 +00:00
parent e6a51f162d
commit 4a06e8b9c9
5 changed files with 174 additions and 2 deletions

View file

@ -175,9 +175,12 @@ async function init_app() {
try {
for await(const [f,fh] of opfs.entries()) {
const m = f.match(/^markers-(.*).json/);
if(!m) {
continue;
}
const data = JSON.parse(await (await fh.getFile()).text());
const name = data.name;
const name = data.name || '';
const id = m[1];