Flashcard Widget

Configured via JavaScript

Cards are passed as an array of {front, back} objects.

Configured via HTML

Cards are written as a <dl> inside a div.marimo-flashcard: each <dt> is the front and the following <dd> is the back.

Git Commands

Create a new branch and switch to it
git checkout -b <branch-name>
Stage all changes for the next commit
git add .
Undo the last commit but keep the changes staged
git reset --soft HEAD~1
Show the commit history as a compact graph
git log --oneline --graph