Last active
October 21, 2024 12:54
-
-
Save donmccurdy/daef0a82865727ed99ada9e378227f28 to your computer and use it in GitHub Desktop.
Script for formatting Libby highlights (.json) as Markdown (.md).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
/* SPDX-License-Identifier: BlueOak-1.0.0 */ | |
import { readFileSync, writeFileSync } from 'fs'; | |
const args = process.argv.slice(2); | |
const srcPath = new URL(args[0], import.meta.url); | |
const dstPath = new URL(args[1], import.meta.url); | |
// | |
const json = JSON.parse(readFileSync(srcPath, 'utf-8')); | |
if (json.version !== 1) { | |
console.warn(`Expected version 1, found version ${json.version}`); | |
} | |
// | |
const meta = json.readingJourney; | |
const md = ` | |
# ${json.readingJourney.title.text} | |
## Metadata | |
| author | publisher | isbn | | |
|--------|-----------|------| | |
| ${formatCell(meta.author)} | ${formatCell(meta.publisher)} | ${meta.isbn} | | |
## Highlights | |
${ | |
json.highlights | |
.sort((a, b) => a.percent - b.percent) | |
.map(formatHighlight) | |
.join('\n\n***\n\n') | |
} | |
`.trim(); | |
writeFileSync(dstPath, md, 'utf-8'); | |
///////// UTILS ///////// | |
function formatHighlight({quote, chapter, percent}) { | |
return ` | |
${quote} | |
| chapter | percent | | |
|------------|------------| | |
| ${formatCell(chapter)} | ${percent.toFixed(3)} | | |
`.trim(); | |
} | |
function formatCell(text) { | |
return text.replace('|', '\\|'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment