Skip to content

Instantly share code, notes, and snippets.

@nodaguti
Last active March 27, 2024 06:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save nodaguti/7b54519da2dee93e23bc to your computer and use it in GitHub Desktop.
Save nodaguti/7b54519da2dee93e23bc to your computer and use it in GitHub Desktop.
Quizlet to CSV
/**
* Convert a list on Quizlet into CSV-formatted text.
* Usage:
* i) Copy and paste into your browser's console.
* ii) Run it!
*/
(() => {
const terms = document.getElementsByClassName('term');
const csv = [];
Array.from(terms).forEach((term) => {
const word = term.querySelector('.qWord').textContent.replace(/[\n\r]+/g, '/');
const def = term.querySelector('.qDef').textContent.replace(/[\n\r]+/g, '/');
csv.push(`"${word}","${def}"`);
});
console.log(csv.join('\n'));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment