Anki as a knowledge base (with a "massive cloze note")

No need for an add-on. Add this to either side of your note template.

<script>
setTimeout(() => {
    if ((cloze = document.querySelector(".cloze")) != null) {
        cloze.scrollIntoView({
            behavior: "smooth",
            block: "center"
        })
    }
}, 0)
</script>
4 Likes