File size: 18,931 Bytes
e903a32 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 |
#!/usr/bin/env node
import { readFileSync, writeFileSync, existsSync, mkdirSync, readdirSync, statSync } from 'fs';
import { join, dirname, basename, extname } from 'path';
import { fileURLToPath } from 'url';
import matter from 'gray-matter';
import { extractAndGenerateNotionFrontmatter } from './notion-metadata-extractor.mjs';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// Configuration
const DEFAULT_INPUT = join(__dirname, 'output');
const DEFAULT_OUTPUT = join(__dirname, 'output');
function parseArgs() {
const args = process.argv.slice(2);
const config = {
input: DEFAULT_INPUT,
output: DEFAULT_OUTPUT,
};
for (const arg of args) {
if (arg.startsWith('--input=')) {
config.input = arg.substring('--input='.length);
} else if (arg.startsWith('--output=')) {
config.output = arg.substring('--output='.length);
} else if (arg === '--help' || arg === '-h') {
console.log(`
π Notion Markdown to MDX Converter
Usage:
node mdx-converter.mjs [options]
Options:
--input=PATH Input directory or file (default: ${DEFAULT_INPUT})
--output=PATH Output directory (default: ${DEFAULT_OUTPUT})
--help, -h Show this help
Examples:
# Convert all markdown files in output directory
node mdx-converter.mjs
# Convert specific file
node mdx-converter.mjs --input=article.md --output=converted/
# Convert directory
node mdx-converter.mjs --input=markdown-files/ --output=mdx-files/
`);
process.exit(0);
} else if (!config.input) {
config.input = arg;
} else if (!config.output) {
config.output = arg;
}
}
return config;
}
/**
* Track which Astro components are used during transformations
*/
const usedComponents = new Set();
/**
* Track individual image imports needed
*/
const imageImports = new Map(); // src -> varName
/**
* Generate a variable name from image path
* @param {string} src - Image source path
* @returns {string} - Valid variable name
*/
function generateImageVarName(src) {
// Extract filename without extension and make it a valid JS variable
const filename = src.split('/').pop().replace(/\.[^.]+$/, '');
return filename.replace(/[^a-zA-Z0-9]/g, '_').replace(/^[0-9]/, 'img_$&');
}
/**
* Add required component imports to the frontmatter
* @param {string} content - MDX content
* @returns {string} - Content with component imports
*/
function addComponentImports(content) {
console.log(' π¦ Adding component and image imports...');
let imports = [];
// Add component imports
if (usedComponents.size > 0) {
const componentImports = Array.from(usedComponents)
.map(component => `import ${component} from '../components/${component}.astro';`);
imports.push(...componentImports);
console.log(` β
Importing components: ${Array.from(usedComponents).join(', ')}`);
}
// Add image imports
if (imageImports.size > 0) {
const imageImportStatements = Array.from(imageImports.entries())
.map(([src, varName]) => `import ${varName} from '${src}';`);
imports.push(...imageImportStatements);
console.log(` β
Importing ${imageImports.size} image(s)`);
}
if (imports.length === 0) {
console.log(' βΉοΈ No imports needed');
return content;
}
const importBlock = imports.join('\n');
// Insert imports after frontmatter
const frontmatterEnd = content.indexOf('---', 3) + 3;
if (frontmatterEnd > 2) {
return content.slice(0, frontmatterEnd) + '\n\n' + importBlock + '\n' + content.slice(frontmatterEnd);
} else {
// No frontmatter, add at beginning
return importBlock + '\n\n' + content;
}
}
/**
* Transform Notion images to Figure components
* @param {string} content - MDX content
* @returns {string} - Content with Figure components
*/
function transformImages(content) {
console.log(' πΌοΈ Transforming images to Figure components...');
let hasImages = false;
// Helper function to clean source paths
const cleanSrcPath = (src) => {
// Convert Notion media paths to relative paths
return src.replace(/^\/media\//, './media/')
.replace(/^\.\/media\//, './media/');
};
// Helper to clean caption text
const cleanCaption = (caption) => {
return caption
.replace(/<[^>]*>/g, '') // Remove HTML tags
.replace(/\n/g, ' ') // Replace newlines with spaces
.replace(/\r/g, ' ') // Replace carriage returns with spaces
.replace(/\s+/g, ' ') // Replace multiple spaces with single space
.replace(/'/g, "\\'") // Escape quotes
.trim(); // Trim whitespace
};
// Helper to clean alt text
const cleanAltText = (alt, maxLength = 100) => {
const cleaned = alt
.replace(/<[^>]*>/g, '') // Remove HTML tags
.replace(/\n/g, ' ') // Replace newlines with spaces
.replace(/\r/g, ' ') // Replace carriage returns with spaces
.replace(/\s+/g, ' ') // Replace multiple spaces with single space
.trim(); // Trim whitespace
return cleaned.length > maxLength
? cleaned.substring(0, maxLength) + '...'
: cleaned;
};
// Create Figure component with import
const createFigureComponent = (src, alt = '', caption = '') => {
const cleanSrc = cleanSrcPath(src);
// Skip PDF URLs and external URLs - they should remain as links only
if (cleanSrc.includes('.pdf') || cleanSrc.includes('arxiv.org/pdf') ||
(cleanSrc.startsWith('http') && !cleanSrc.includes('/media/'))) {
console.log(` β οΈ Skipping external/PDF URL: ${cleanSrc}`);
// Return the original markdown image syntax for external URLs
return ``;
}
const varName = generateImageVarName(cleanSrc);
imageImports.set(cleanSrc, varName);
usedComponents.add('Figure');
const props = [];
props.push(`src={${varName}}`);
props.push('zoomable');
props.push('downloadable');
props.push('layout="fixed"');
if (alt) props.push(`alt="${alt}"`);
if (caption) props.push(`caption={'${caption}'}`);
return `<Figure\n ${props.join('\n ')}\n/>`;
};
// Transform markdown images: 
content = content.replace(/!\[([^\]]*)\]\(([^)]+)\)/g, (match, alt, src) => {
const cleanSrc = cleanSrcPath(src);
const cleanAlt = cleanAltText(alt || 'Figure');
hasImages = true;
return createFigureComponent(cleanSrc, cleanAlt);
});
// Transform images with captions (Notion sometimes adds captions as separate text)
content = content.replace(/!\[([^\]]*)\]\(([^)]+)\)\s*\n\s*([^\n]+)/g, (match, alt, src, caption) => {
const cleanSrc = cleanSrcPath(src);
const cleanAlt = cleanAltText(alt || 'Figure');
const cleanCap = cleanCaption(caption);
hasImages = true;
return createFigureComponent(cleanSrc, cleanAlt, cleanCap);
});
if (hasImages) {
console.log(' β
Figure components with imports will be created');
}
return content;
}
/**
* Transform Notion callouts to Note components
* @param {string} content - MDX content
* @returns {string} - Content with Note components
*/
function transformCallouts(content) {
console.log(' π Transforming callouts to Note components...');
let transformedCount = 0;
// Transform blockquotes that look like Notion callouts
content = content.replace(/^> \*\*([^*]+)\*\*\s*\n> (.+?)(?=\n> \*\*|\n\n|\n$)/gms, (match, title, content) => {
transformedCount++;
usedComponents.add('Note');
const cleanContent = content
.replace(/^> /gm, '') // Remove blockquote markers
.replace(/\n+/g, '\n') // Normalize newlines
.trim();
return `<Note type="${title.toLowerCase()}" title="${title}">\n${cleanContent}\n</Note>\n\n`;
});
if (transformedCount > 0) {
console.log(` β
Transformed ${transformedCount} callout(s) to Note components`);
}
return content;
}
/**
* Transform Notion databases/tables to enhanced table components
* @param {string} content - MDX content
* @returns {string} - Content with enhanced tables
*/
function transformTables(content) {
console.log(' π Enhancing tables...');
let enhancedCount = 0;
// Wrap tables in a container for better styling
content = content.replace(/^(\|[^|\n]+\|[\s\S]*?)(?=\n\n|\n$)/gm, (match) => {
if (match.includes('|') && match.split('\n').length > 2) {
enhancedCount++;
return `<div class="table-container">\n\n${match}\n\n</div>`;
}
return match;
});
if (enhancedCount > 0) {
console.log(` β
Enhanced ${enhancedCount} table(s)`);
}
return content;
}
/**
* Transform Notion code blocks to enhanced code components
* @param {string} content - MDX content
* @returns {string} - Content with enhanced code blocks
*/
function transformCodeBlocks(content) {
console.log(' π» Enhancing code blocks...');
let enhancedCount = 0;
// Add copy functionality to code blocks
content = content.replace(/^```(\w+)\n([\s\S]*?)\n```$/gm, (match, lang, code) => {
enhancedCount++;
return `\`\`\`${lang} copy\n${code}\n\`\`\``;
});
if (enhancedCount > 0) {
console.log(` β
Enhanced ${enhancedCount} code block(s)`);
}
return content;
}
/**
* Fix Notion-specific formatting issues
* @param {string} content - MDX content
* @returns {string} - Content with fixed formatting
*/
function fixNotionFormatting(content) {
console.log(' π§ Fixing Notion formatting issues...');
let fixedCount = 0;
// Fix Notion's toggle lists that don't convert well
content = content.replace(/^(\s*)β’\s*(.+)$/gm, (match, indent, text) => {
fixedCount++;
return `${indent}- ${text}`;
});
// Fix Notion's numbered lists that might have issues
content = content.replace(/^(\s*)\d+\.\s*(.+)$/gm, (match, indent, text) => {
// Only fix if it's not already properly formatted
if (!text.includes('\n') || text.split('\n').length === 1) {
return match; // Keep as is
}
fixedCount++;
return `${indent}1. ${text}`;
});
// Fix Notion's bold/italic combinations
content = content.replace(/\*\*([^*]+)\*\*([^*]+)\*\*([^*]+)\*\*/g, (match, part1, part2, part3) => {
fixedCount++;
return `**${part1}${part2}${part3}**`;
});
if (fixedCount > 0) {
console.log(` β
Fixed ${fixedCount} formatting issue(s)`);
}
return content;
}
/**
* Ensure proper frontmatter for MDX with Notion metadata
* @param {string} content - MDX content
* @param {string} pageId - Notion page ID (optional)
* @param {string} notionToken - Notion API token (optional)
* @returns {string} - Content with proper frontmatter
*/
async function ensureFrontmatter(content, pageId = null, notionToken = null) {
console.log(' π Ensuring proper frontmatter...');
if (!content.startsWith('---')) {
let frontmatter;
if (pageId && notionToken) {
try {
console.log(' π Extracting Notion metadata...');
frontmatter = await extractAndGenerateNotionFrontmatter(pageId, notionToken);
console.log(' β
Generated rich frontmatter from Notion');
} catch (error) {
console.log(' β οΈ Failed to extract Notion metadata, using basic frontmatter');
frontmatter = generateBasicFrontmatter();
}
} else {
frontmatter = generateBasicFrontmatter();
console.log(' β
Generated basic frontmatter');
}
return frontmatter + content;
}
// Parse existing frontmatter and enhance it
try {
const { data, content: body } = matter(content);
// If we have Notion metadata available, try to enhance the frontmatter
if (pageId && notionToken && (!data.notion_id || data.notion_id !== pageId)) {
try {
console.log(' π Enhancing frontmatter with Notion metadata...');
const notionFrontmatter = await extractAndGenerateNotionFrontmatter(pageId, notionToken);
const { data: notionData } = matter(notionFrontmatter);
// Merge Notion metadata with existing frontmatter
const enhancedData = { ...data, ...notionData };
const enhancedContent = matter.stringify(body, enhancedData);
console.log(' β
Enhanced frontmatter with Notion metadata');
return enhancedContent;
} catch (error) {
console.log(' β οΈ Could not enhance with Notion metadata, keeping existing');
}
}
// Ensure required fields
if (!data.title) data.title = 'Notion Article';
if (!data.published) data.published = new Date().toISOString().split('T')[0];
if (!data.tableOfContentsAutoCollapse) data.tableOfContentsAutoCollapse = true;
const enhancedContent = matter.stringify(body, data);
console.log(' β
Enhanced existing frontmatter');
return enhancedContent;
} catch (error) {
console.log(' β οΈ Could not parse frontmatter, keeping as is');
return content;
}
}
/**
* Generate basic frontmatter
* @returns {string} - Basic frontmatter
*/
function generateBasicFrontmatter() {
const currentDate = new Date().toLocaleDateString('en-US', {
year: 'numeric',
month: 'short',
day: '2-digit'
});
return `---
title: "Notion Article"
published: "${currentDate}"
tableOfContentsAutoCollapse: true
---
`;
}
/**
* Main MDX processing function that applies all transformations
* @param {string} content - Raw Markdown content
* @param {string} pageId - Notion page ID (optional)
* @param {string} notionToken - Notion API token (optional)
* @returns {string} - Processed MDX content compatible with Astro
*/
async function processMdxContent(content, pageId = null, notionToken = null) {
console.log('π§ Processing for Astro MDX compatibility...');
// Clear previous tracking
usedComponents.clear();
imageImports.clear();
let processedContent = content;
// Apply each transformation step sequentially
processedContent = await ensureFrontmatter(processedContent, pageId, notionToken);
processedContent = fixNotionFormatting(processedContent);
processedContent = transformCallouts(processedContent);
processedContent = transformImages(processedContent);
processedContent = transformTables(processedContent);
processedContent = transformCodeBlocks(processedContent);
// Add component imports at the end
processedContent = addComponentImports(processedContent);
return processedContent;
}
/**
* Convert a single markdown file to MDX
* @param {string} inputFile - Input markdown file
* @param {string} outputDir - Output directory
* @param {string} pageId - Notion page ID (optional)
* @param {string} notionToken - Notion API token (optional)
*/
async function convertFileToMdx(inputFile, outputDir, pageId = null, notionToken = null) {
const filename = basename(inputFile, '.md');
const outputFile = join(outputDir, `${filename}.mdx`);
console.log(`π Converting: ${basename(inputFile)} β ${basename(outputFile)}`);
try {
const markdownContent = readFileSync(inputFile, 'utf8');
const mdxContent = await processMdxContent(markdownContent, pageId, notionToken);
writeFileSync(outputFile, mdxContent);
console.log(` β
Converted: ${outputFile}`);
// Show file size
const inputSize = Math.round(markdownContent.length / 1024);
const outputSize = Math.round(mdxContent.length / 1024);
console.log(` π Input: ${inputSize}KB β Output: ${outputSize}KB`);
} catch (error) {
console.error(` β Failed to convert ${inputFile}: ${error.message}`);
}
}
/**
* Convert all markdown files in a directory to MDX
* @param {string} inputPath - Input path (file or directory)
* @param {string} outputDir - Output directory
* @param {string} pageId - Notion page ID (optional)
* @param {string} notionToken - Notion API token (optional)
*/
async function convertToMdx(inputPath, outputDir, pageId = null, notionToken = null) {
console.log('π Notion Markdown to Astro MDX Converter');
console.log(`π Input: ${inputPath}`);
console.log(`π Output: ${outputDir}`);
// Check if input exists
if (!existsSync(inputPath)) {
console.error(`β Input not found: ${inputPath}`);
process.exit(1);
}
try {
// Ensure output directory exists
if (!existsSync(outputDir)) {
mkdirSync(outputDir, { recursive: true });
}
let filesToConvert = [];
if (statSync(inputPath).isDirectory()) {
// Convert all .md files in directory
const files = readdirSync(inputPath);
filesToConvert = files
.filter(file => file.endsWith('.md'))
.map(file => join(inputPath, file));
} else if (inputPath.endsWith('.md')) {
// Convert single file
filesToConvert = [inputPath];
} else {
console.error('β Input must be a .md file or directory containing .md files');
process.exit(1);
}
if (filesToConvert.length === 0) {
console.log('βΉοΈ No .md files found to convert');
return;
}
console.log(`π Found ${filesToConvert.length} file(s) to convert`);
// Convert each file
for (const file of filesToConvert) {
await convertFileToMdx(file, outputDir, pageId, notionToken);
}
console.log(`β
Conversion completed! ${filesToConvert.length} file(s) processed`);
} catch (error) {
console.error('β Conversion failed:', error.message);
process.exit(1);
}
}
export { convertToMdx };
function main() {
const config = parseArgs();
convertToMdx(config.input, config.output);
console.log('π MDX conversion completed!');
}
if (import.meta.url === `file://${process.argv[1]}`) {
main();
}
|