added about and help texts, font size slider

This commit is contained in:
randogoth 2025-02-22 20:59:42 +02:00
parent 4fcd6db6fd
commit 750a228921
6 changed files with 230 additions and 9 deletions

View file

@ -70,4 +70,12 @@ final markdown = Mode(refs: {}, aliases: [
className: "tag-at",
begin: "(?<=\\s|^)@[a-zA-Z0-9_]+",
relevance: 10), // Yellow
Mode(
className: "keyword",
begin: "(?<=\\s|^):[a-zA-Z0-9_]+",
relevance: 10),
Mode(
className: "variable",
begin: "(?<=\\s|^)\/[a-zA-Z0-9_\/]+",
relevance: 10), // Yellow
]);