File size: 11,745 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 |
#!/usr/bin/env node
import { readFileSync, writeFileSync, existsSync } from 'fs';
import { join, dirname, basename } from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
/**
* Post-process Notion-generated Markdown for better MDX compatibility
* @param {string} content - Raw markdown content from Notion
* @returns {string} - Processed markdown content
*/
export function postProcessMarkdown(content) {
console.log('π§ Post-processing Notion Markdown for MDX compatibility...');
let processedContent = content;
// Apply each transformation step
processedContent = cleanNotionArtifacts(processedContent);
processedContent = fixNotionLinks(processedContent);
processedContent = optimizeImages(processedContent);
processedContent = shiftHeadingLevels(processedContent);
processedContent = cleanEmptyLines(processedContent);
processedContent = fixCodeBlocks(processedContent);
processedContent = fixCodeBlockEndings(processedContent);
processedContent = optimizeTables(processedContent);
return processedContent;
}
/**
* Clean Notion-specific artifacts and formatting
* @param {string} content - Markdown content
* @returns {string} - Cleaned content
*/
function cleanNotionArtifacts(content) {
console.log(' π§Ή Cleaning Notion artifacts...');
let cleanedCount = 0;
// Remove Notion's internal page references that don't convert well
content = content.replace(/\[([^\]]+)\]\(https:\/\/www\.notion\.so\/[^)]+\)/g, (match, text) => {
cleanedCount++;
return text; // Keep just the text, remove the broken link
});
// Clean up Notion's callout blocks that might not render properly
content = content.replace(/^> \*\*([^*]+)\*\*\s*\n/gm, '> **$1**\n\n');
// Remove Notion's page dividers that don't have markdown equivalents
content = content.replace(/^---+\s*$/gm, '');
// Clean up empty blockquotes
content = content.replace(/^>\s*$/gm, '');
if (cleanedCount > 0) {
console.log(` β
Cleaned ${cleanedCount} Notion artifact(s)`);
}
return content;
}
/**
* Fix Notion internal links to be more MDX-friendly
* @param {string} content - Markdown content
* @returns {string} - Content with fixed links
*/
function fixNotionLinks(content) {
console.log(' π Fixing Notion internal links...');
let fixedCount = 0;
// Convert Notion page links to relative links (assuming they'll be converted to MDX)
content = content.replace(/\[([^\]]+)\]\(https:\/\/www\.notion\.so\/[^/]+\/([^?#)]+)\)/g, (match, text, pageId) => {
fixedCount++;
// Convert to relative link - this will need to be updated based on your routing
return `[${text}](#${pageId})`;
});
// Fix broken notion.so links that might be malformed
content = content.replace(/\[([^\]]+)\]\(https:\/\/www\.notion\.so\/[^)]*\)/g, (match, text) => {
fixedCount++;
return text; // Remove broken links, keep text
});
if (fixedCount > 0) {
console.log(` β
Fixed ${fixedCount} Notion link(s)`);
}
return content;
}
/**
* Optimize images for better MDX compatibility
* @param {string} content - Markdown content
* @returns {string} - Content with optimized images
*/
function optimizeImages(content) {
console.log(' πΌοΈ Optimizing images...');
let optimizedCount = 0;
// Ensure images have proper alt text
content = content.replace(/!\[\]\(([^)]+)\)/g, (match, src) => {
optimizedCount++;
const filename = basename(src);
return ``;
});
// Clean up image paths that might have query parameters
content = content.replace(/!\[([^\]]*)\]\(([^)]+)\?[^)]*\)/g, (match, alt, src) => {
optimizedCount++;
return ``;
});
if (optimizedCount > 0) {
console.log(` β
Optimized ${optimizedCount} image(s)`);
}
return content;
}
/**
* Shift all heading levels down by one (H1 β H2, H2 β H3, etc.)
* @param {string} content - Markdown content
* @returns {string} - Content with shifted heading levels
*/
function shiftHeadingLevels(content) {
console.log(' π Shifting heading levels down by one...');
let shiftedCount = 0;
// Shift heading levels: H1 β H2, H2 β H3, H3 β H4, H4 β H5, H5 β H6
// Process from highest to lowest to avoid conflicts
content = content.replace(/^##### (.*$)/gim, '###### $1');
content = content.replace(/^#### (.*$)/gim, '##### $1');
content = content.replace(/^### (.*$)/gim, '#### $1');
content = content.replace(/^## (.*$)/gim, '### $1');
content = content.replace(/^# (.*$)/gim, '## $1');
// Count the number of headings shifted
const headingMatches = content.match(/^#{1,6} /gm);
if (headingMatches) {
shiftedCount = headingMatches.length;
}
console.log(` β
Shifted ${shiftedCount} heading level(s)`);
return content;
}
/**
* Fix code block endings that end with "text" instead of proper closing
* @param {string} content - Markdown content
* @returns {string} - Content with fixed code block endings
*/
function fixCodeBlockEndings(content) {
console.log(' π» Fixing code block endings...');
let fixedCount = 0;
// Fix code blocks that end with ```text instead of ```
content = content.replace(/```text\n/g, '```\n');
// Count the number of fixes
const textEndingMatches = content.match(/```text\n/g);
if (textEndingMatches) {
fixedCount = textEndingMatches.length;
}
if (fixedCount > 0) {
console.log(` β
Fixed ${fixedCount} code block ending(s)`);
}
return content;
}
/**
* Clean up excessive empty lines
* @param {string} content - Markdown content
* @returns {string} - Content with cleaned spacing
*/
function cleanEmptyLines(content) {
console.log(' π Cleaning excessive empty lines...');
// Replace 3+ consecutive newlines with 2 newlines
const cleanedContent = content.replace(/\n{3,}/g, '\n\n');
const originalLines = content.split('\n').length;
const cleanedLines = cleanedContent.split('\n').length;
const removedLines = originalLines - cleanedLines;
if (removedLines > 0) {
console.log(` β
Removed ${removedLines} excessive empty line(s)`);
}
return cleanedContent;
}
/**
* Fix code blocks for better MDX compatibility
* @param {string} content - Markdown content
* @returns {string} - Content with fixed code blocks
*/
function fixCodeBlocks(content) {
console.log(' π» Fixing code blocks...');
let fixedCount = 0;
// Ensure code blocks have proper language identifiers
content = content.replace(/^```\s*$/gm, '```text');
// Fix code blocks that might have Notion-specific formatting
content = content.replace(/^```(\w+)\s*\n([\s\S]*?)\n```$/gm, (match, lang, code) => {
// Clean up any Notion artifacts in code
const cleanCode = code.replace(/\u00A0/g, ' '); // Replace non-breaking spaces
return `\`\`\`${lang}\n${cleanCode}\n\`\`\``;
});
if (fixedCount > 0) {
console.log(` β
Fixed ${fixedCount} code block(s)`);
}
return content;
}
/**
* Optimize tables for better MDX rendering
* @param {string} content - Markdown content
* @returns {string} - Content with optimized tables
*/
function optimizeTables(content) {
console.log(' π Optimizing tables...');
let optimizedCount = 0;
// Fix tables that might have inconsistent column counts
content = content.replace(/^\|(.+)\|\s*$/gm, (match, row) => {
const cells = row.split('|').map(cell => cell.trim());
const cleanCells = cells.filter(cell => cell.length > 0);
if (cleanCells.length > 0) {
optimizedCount++;
return `| ${cleanCells.join(' | ')} |`;
}
return match;
});
// Ensure table headers are properly formatted
content = content.replace(/^\|(.+)\|\s*\n\|([-:\s|]+)\|\s*$/gm, (match, header, separator) => {
const headerCells = header.split('|').map(cell => cell.trim()).filter(cell => cell.length > 0);
const separatorCells = separator.split('|').map(cell => cell.trim()).filter(cell => cell.length > 0);
if (headerCells.length !== separatorCells.length) {
optimizedCount++;
const newSeparator = headerCells.map(() => '---').join(' | ');
return `| ${headerCells.join(' | ')} |\n| ${newSeparator} |`;
}
return match;
});
if (optimizedCount > 0) {
console.log(` β
Optimized ${optimizedCount} table(s)`);
}
return content;
}
/**
* Extract frontmatter from Notion page properties
* @param {Object} pageProperties - Notion page properties
* @returns {string} - YAML frontmatter
*/
export function generateFrontmatter(pageProperties) {
console.log(' π Generating frontmatter from Notion properties...');
const frontmatter = {
title: pageProperties.title || 'Untitled',
published: new Date().toISOString().split('T')[0],
tableOfContentsAutoCollapse: true
};
// Add other properties if they exist
if (pageProperties.description) {
frontmatter.description = pageProperties.description;
}
if (pageProperties.tags) {
frontmatter.tags = pageProperties.tags;
}
if (pageProperties.author) {
frontmatter.author = pageProperties.author;
}
// Convert to YAML string
const yamlLines = Object.entries(frontmatter)
.map(([key, value]) => {
if (Array.isArray(value)) {
return `${key}:\n${value.map(v => ` - ${v}`).join('\n')}`;
}
return `${key}: "${value}"`;
});
return `---\n${yamlLines.join('\n')}\n---\n\n`;
}
function main() {
const args = process.argv.slice(2);
if (args.includes('--help') || args.includes('-h')) {
console.log(`
π§ Notion Markdown Post-Processor
Usage:
node post-processor.mjs [options] [input-file] [output-file]
Options:
--verbose Show detailed processing information
--help, -h Show this help
Examples:
# Process a single file
node post-processor.mjs input.md output.md
# Process with verbose output
node post-processor.mjs --verbose input.md output.md
`);
process.exit(0);
}
const verbose = args.includes('--verbose');
const inputFile = args.find(arg => !arg.startsWith('--') && arg.endsWith('.md'));
const outputFile = args.find(arg => !arg.startsWith('--') && arg !== inputFile && arg.endsWith('.md'));
if (!inputFile) {
console.error('β Please provide an input markdown file');
process.exit(1);
}
if (!existsSync(inputFile)) {
console.error(`β Input file not found: ${inputFile}`);
process.exit(1);
}
try {
console.log(`π Reading: ${inputFile}`);
const content = readFileSync(inputFile, 'utf8');
const processedContent = postProcessMarkdown(content);
const finalOutputFile = outputFile || inputFile.replace('.md', '.processed.md');
writeFileSync(finalOutputFile, processedContent);
console.log(`β
Processed: ${finalOutputFile}`);
if (verbose) {
console.log(`π Input: ${content.length} chars β Output: ${processedContent.length} chars`);
}
} catch (error) {
console.error('β Processing failed:', error.message);
process.exit(1);
}
}
// Run CLI if called directly
if (import.meta.url === `file://${process.argv[1]}`) {
main();
}
|