-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmd2wphtml.js
142 lines (122 loc) · 4.21 KB
/
md2wphtml.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
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
const fs = require('fs');
const showdown = require('showdown');
const clipboardy = require('clipboardy');
////////////////////////////////////////////////////////////////////////////////
// Parse command line options
////////////////////////////////////////////////////////////////////////////////
const [mdPath, htmlPath] = process.argv.slice(2);
if (!mdPath || !htmlPath) {
console.error('Paths not specified');
console.error('Usage');
console.error(' node md2wphtml.js /path/to/input.md /path/to/output.html');
process.exit(1);
}
////////////////////////////////////////////////////////////////////////////////
// Read Markdown file
////////////////////////////////////////////////////////////////////////////////
const markdown = fs.readFileSync(mdPath, 'utf8');
////////////////////////////////////////////////////////////////////////////////
// Convert Markdown to HTML (first pass only)
////////////////////////////////////////////////////////////////////////////////
const converter = new showdown.Converter({
ghCodeBlocks: true, // outputs GitHub code block HTML
noHeaderId: true, // disables 'id' attribute in <h*>
strikethrough: true, // enables strikethrough
tables: true, // enables tables
});
let html = converter.makeHtml(markdown);
////////////////////////////////////////////////////////////////////////////////
// Change GitHub code block HTML into WP-GeSHi-Highlight code block HTML
// GitHub code block HTML looks like this:
// <pre><code class="cs language-cs">void Foo()
// {
// }
// </code></pre>
// WP-GeSHi-Highlight code block HTML looks like this:
//
// <pre lang="cs">
// void Foo()
// {
// }
// </pre>
// Also, prefix and postfix with a newline
////////////////////////////////////////////////////////////////////////////////
// Before:
// <pre><code class="cs language-cs">void Foo()
// After:
//
// <pre lang="cs language-cs">void Foo()
html = html.replace(/\<pre\>\<code class=\"/g, '\n\<pre lang=\"');
// Before:
// <pre lang="cs language-cs">void Foo()
// After:
// <pre lang="cs">
// void Foo()
html = html.replace(/ language-[a-z]*\"\>/g, '\"\>\n');
// Before:
// </code></pre>
// After:
// </pre>
//
html = html.replace(/\<\/code\>\<\/pre\>/g, '</pre>\n');
////////////////////////////////////////////////////////////////////////////////
// Replace <p> with a newline and remove </p>
////////////////////////////////////////////////////////////////////////////////
// Before:
// <p>
// After:
//
//
html = html.replace(/\<p\>/g, '\n');
// Before:
// </p>
// After:
//
html = html.replace(/\<\/p\>/g, '');
////////////////////////////////////////////////////////////////////////////////
// Replace HTML character subsitutions (e.g. <)
// with real characters (e.g. <) in <pre>...</pre>
////////////////////////////////////////////////////////////////////////////////
let insidePre = false;
let lines = html.split('\n');
lines.forEach((line, index) => {
if (line.includes('<pre')) {
insidePre = true;
} else if (line.includes('</pre')) {
insidePre = false;
} else if (insidePre) {
lines[index] =
line
.split('<').join('<')
.split('>').join('>')
.split('&').join('&')
.split('"').join('"')
.split(''').join('\'');
}
});
html = lines.join('\n');
////////////////////////////////////////////////////////////////////////////////
// Add a newline before <!--more-->
////////////////////////////////////////////////////////////////////////////////
// Before:
// <!--more-->
// After:
//
// <!--more-->
html = html.replace(/\<!--more--\>/g, '\n<!--more-->');
////////////////////////////////////////////////////////////////////////////////
// Strip leading and trailing newlines
////////////////////////////////////////////////////////////////////////////////
lines = html.split('\n');
while (lines[lines.length - 1].trim().length === 0) {
lines.pop();
}
while (lines[0].trim().length === 0) {
lines.shift();
}
html = lines.join('\n');
////////////////////////////////////////////////////////////////////////////////
// Output HTML to file and clipboard
////////////////////////////////////////////////////////////////////////////////
fs.writeFileSync(htmlPath, html, 'utf-8');
clipboardy.writeSync(html);