-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathdoc-documenter.ts
109 lines (90 loc) · 2.75 KB
/
doc-documenter.ts
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
import { readdir, createReadStream, writeFile } from 'fs-extra'
import { createInterface } from 'readline'
import { join, parse } from 'path'
import { exec } from 'child_process'
import * as fs from 'fs'
const DOCS_DIR = './docs/api'
async function main() {
const outputFolder = './temp';
await fs.promises.mkdir(outputFolder, { recursive: true })
await fs.promises.mkdir(DOCS_DIR, { recursive: true })
await new Promise((resolve, reject) =>
exec(`api-documenter markdown -i ./temp -o ${DOCS_DIR}`, (err, stdout, stderr) => {
console.log(stdout)
console.error(stderr)
if (err) {
reject(err)
} else {
resolve('')
}
}),
)
const docFiles = await readdir(DOCS_DIR)
for (const docFile of docFiles) {
try {
const { name: id, ext } = parse(docFile)
if (ext !== '.md') {
continue
}
const docPath = join(DOCS_DIR, docFile)
const input = createReadStream(docPath)
const output: string[] = []
const lines = createInterface({
input,
crlfDelay: Infinity,
})
let title = ''
lines.on('line', (line) => {
let skip = false
if (!title) {
const titleLine = line.match(/## (.*)/)
if (titleLine) {
title = titleLine[1]
}
}
const indexHomeLink = line.match(/\[Home]\(.\/index\.md\)/)
const homeLink = line.match(/\[Home]\(.\/index\.md\) > (.*)/)
if (homeLink) {
line = line.replace('Home', 'Packages')
}
if (indexHomeLink) {
// Skip the breadcrumb for the toplevel index file.
if (id === 'index') {
skip = true
}
skip = true
}
// See issue #4. api-documenter expects \| to escape table
// column delimiters, but docusaurus uses a markdown processor
// that doesn't support this. Replace with an escape sequence
// that renders |.
if (line.startsWith('|')) {
line = line.replace(/\\\|/g, '|')
}
// MDX cries when you put commects in there :(
line = replaceAll(line, '<!-- -->', '')
if (id === 'core') {
line = line.replace('core package', 'Veramo Core')
}
if (!skip) {
output.push(line)
}
})
await new Promise((resolve) => lines.once('close', resolve))
input.close()
const header = ['---', `id: ${id}`, `title: ${title}`, `hide_title: true`, '---']
let outputString = header.concat(output).join('\n')
outputString = outputString.replace(/<a\nhref=/g, '<a href=')
await writeFile(docPath, outputString)
} catch (err) {
console.error(`Could not process ${docFile}: ${err}`)
}
}
}
function escapeRegExp(string: string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') // $& means the whole matched string
}
function replaceAll(str: string, find: string, replace: string) {
return str.replace(new RegExp(escapeRegExp(find), 'g'), replace)
}
main();