Packages

A spaced-repetition system based on Anki built in Phoenix LiveView which uses Markdown for flashcard content

Current section

Files

Jump to
memorex assets js hooks.js
Raw

assets/js/hooks.js

let Hooks = {}
Hooks.Math = {
mounted() {
window.renderMathInElement(this.el);
},
updated() {
window.renderMathInElement(this.el);
}
}
export default Hooks;