Skip to content

Instantly share code, notes, and snippets.

View teampolyglot's full-sized avatar

Team Polyglot Network teampolyglot

View GitHub Profile
@teampolyglot
teampolyglot / spacedrep.html
Last active May 1, 2020 07:34
Spaced Repetition via Vue Components
<!-- Put these two lines in your <head> tag -->
<script src="https://cdn.jsdelivr.net/npm/vue"></script><!-- skip this if your site already has VueJS -->
<script src="https://cdn.jsdelivr.net/gh/learn-awesome/flashcard@master/dist/CardSet.umd.min.js"></script>
<!-- And now in your articles, you can create multiple sets of cards.
You must give a unique ID to each question -->
<div id="cardset1">
<card-set timeunit="seconds"></card-set>
</div>