Key terms
| Term | Definition |
|---|
Organize your own course notes into a printable study guide: structured sections, a key term and definition table, a summary, and a self-quiz, with clean CSV, Anki, and Quizlet exports.
| Term | Definition |
|---|
Type your sections, key terms, and a summary, and the guide assembles below as you go: a key-term table, a self-quiz built from your own pairs, and one-click print. Everything stays editable, and every download is a file you keep and can restructure later.
A term pair is exported and quizzed only when both the term and its definition are filled. A row missing either side stays in the table for editing but is flagged and left out of the exports and the quiz, so a half-finished card never ships silently. The self-quiz turns each valid pair into a recall prompt in the direction you choose.
The layout follows the Cornell note-taking method: cue and term column, section notes, and a bottom summary, with the cues doubling as recall prompts. This tool adopts that framing in plain English rather than forcing the literal three-column sheet.
CSV is written to RFC 4180: any field holding a comma, quote, or line break is wrapped in quotes, inner quotes are doubled, rows are joined with CRLF, and a UTF-8 byte-order mark is added so Excel opens it cleanly.
The Anki .txt declares #separator:Tab and
#html:true. Because Anki then parses each field as HTML, the
shared encoder escapes &, <, and
> to entities and encodes a line break as <br>,
so a science card like a<b imports as the literal text
a<b instead of being swallowed as a tag. The first field is
Anki's note-uniqueness key, so notes that share a term merge on import; the
tool warns when that will happen.
The Quizlet .tsv uses Quizlet's default import: a tab between term and definition and a new line between rows. Because a new line is Quizlet's row delimiter, an in-field line break is collapsed to a space so a long definition cannot split a card. This same file is the plain-text copy payload. Quizlet and CSV are plain-text targets, so they keep angle brackets and ampersands literal and do not HTML-escape.
study-guide-maker.
What does this tool do with my notes?
It structures the material you type into a printable, reorderable guide and exports it to Anki, Quizlet, and CSV. You write the content; the tool handles the layout, encoding, and downloads.
Why are two of my terms not in the export?
A pair exports only when both the term and its definition are filled. Any row missing a side is flagged in the preview and left out of the CSV, Anki, and Quizlet files and the self-quiz until you complete it.
Why are the Anki and Quizlet files separate?
Anki needs its #separator:Tab and #html:true header
and HTML-encoded fields; Quizlet would read those directives as literal card
text. Blending them into one file breaks both imports, so each target gets its
own correctly encoded artifact.