Hey everyone,
I have a question regarding CSS and the editor in Anki.
Is it possible to define and use custom CSS classes that are already rendered inside the editor (not only on the review screen) without an add-on?
For example, <u> text is shown as underlined directly in the editor.
I have my own CSS class (e.g. a wavy underline) and I would like text marked with it to appear wavy while editing, not only during review.
Something like:
<wavy>text</wavy>
.wavy {
text-decoration-line: underline;
text-decoration-style: wavy;
}
Is there a way to make the editor apply such custom styles, or is the editor styling hard-coded?
Thanks in advance!