From 96e5e2a6202f1210bc12ffd47b3f18fd4087fcdc Mon Sep 17 00:00:00 2001 From: somegenericdev <95114021+somegenericdev@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:14:23 +0100 Subject: [PATCH] added Anki's default styling to the example in the README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3b5d80b..230c8a6 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,8 @@ var noteType = new AnkiNoteType( AnswerFormat: "{{Front}}
{{Back}}" ) }, - fieldNames: new[] { "Front", "Back" } + fieldNames: new[] { "Front", "Back" }, + css: ".card {font-family: arial;font-size: 20px;text-align: center;color: black;background-color: white;}" ); var collection = new AnkiCollection();