-
Notifications
You must be signed in to change notification settings - Fork 2
/
addheadhash.js
82 lines (69 loc) · 2.61 KB
/
addheadhash.js
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
const fs = require('fs');
const path = require('path');
const crypto = require('crypto');
// const mkdirp = require('mkdirp');
const inputFolder = './original'; // 입력 파일들이 있는 폴더 경로
// const outputFolder = 'output'; // 출력 파일들을 저장할 폴더 경로
// 중복되지 않은 해시 ID를 생성하기 위한 변수
let hashIdCounter = 1;
const usedHashIds = new Set();
// 정규식 패턴
const regex = /\{#([^>]+?)\}/;
// 출력 폴더 생성
// mkdirp.sync(outputFolder);
// 폴더 내의 모든 파일 검색
function processMarkdownFiles(folderPath) {
fs.readdirSync(folderPath).forEach(file => {
const filePath = path.join(folderPath, file);
// 파일인 경우만 처리
if (fs.statSync(filePath).isFile() && file.endsWith('.mdx')) {
processMarkdownFile(filePath);
} else if (fs.statSync(filePath).isDirectory()) {
processMarkdownFiles(filePath); // 하위 디렉토리 처리
}
});
}
// 개별 마크다운 파일 처리
function processMarkdownFile(inputFilePath) {
const inputContent = fs.readFileSync(inputFilePath, 'utf-8');
const lines = inputContent.split('\n');
const outputLines = [];
lines.forEach(line => {
const match = line.match(/^(#+) ([^#].+)$/);
if (match) {
const headingLevel = match[1].length;
const headingText = match[2].trim();
let hashId = null;
// 정규식 패턴과 매치되지 않는 경우에만 해시 ID 생성
if (!regex.test(line)) {
while (true) {
hashId = crypto
.createHash('md5')
.update(`${hashIdCounter}-${headingText}`)
.digest('hex');
hashIdCounter++;
if (!usedHashIds.has(hashId)) {
usedHashIds.add(hashId);
break;
}
}
}
// 해시 ID가 있는 경우 처리
if (hashId) {
outputLines.push(`${'#'.repeat(headingLevel)} ${headingText} {#${hashId}}`);
} else {
outputLines.push(line);
}
} else {
outputLines.push(line);
}
});
// 수정된 내용을 기존 파일에 덮어쓰기
fs.writeFileSync(inputFilePath, outputLines.join('\n'), 'utf-8');
}
// 작업 시작
// processMarkdownFiles(inputFolder);
const inputFilePath = process.argv[2];
console.log(inputFilePath);
processMarkdownFile(inputFilePath);
console.log('작업이 완료되었습니다.');