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
| const fs = require('fs'); const path = require('path'); const MarkdownIt = require('markdown-it');
const md = new MarkdownIt({ html: true });
const headerFilePath = 'decorate/header.html'; const footerFilePath = 'decorate/footer.html'; const markdownFilePath = 'index.md'; const markdownDirPath = 'md';
const headerContent = fs.readFileSync(headerFilePath, 'utf-8'); const footerContent = fs.readFileSync(footerFilePath, 'utf-8');
const markdownContent = fs.readFileSync(markdownFilePath, 'utf-8');
const markdownFiles = fs.readdirSync(markdownDirPath).filter(file => { return path.extname(file) === '.md'; });
md.renderer.rules.heading_open = function (tokens, idx, options, env, self) { const level = tokens[idx].tag.slice(1); if (level == 1) { return '\n <section> \n <h1>' } return self.renderToken(tokens, idx, options); };
md.renderer.rules.hr = function () { return ' <hr> \n </div> \n </section> \n'; };
md.renderer.rules.image = function (tokens, idx, options, env, self) { const token = tokens[idx]; const alt = token.content; const src = token.attrs[token.attrIndex('src')][1];
const backgroundStyles = { 'BackGround': '', 'BackGround-aligncenter': ' aligncenter', };
const className = backgroundStyles[alt];
const backgroundImage = src ? `url('${src}')` : `url('Assert/CFLMY.webp')`;
if (className !== undefined) { return `<span class="background" style="background-image:${backgroundImage};"></span>\n<div class="wrap${className}">`; }
return self.renderToken(tokens, idx, options); };
md.renderer.rules.ordered_list_open = function (tokens, idx, options, env, self) { return `<div class="bg-white shadow"> <ul class="flexblock reasons">`; };
md.renderer.rules.ordered_list_close = function (tokens, idx, options, env, self) { return `</ul> </div>`; };
md.renderer.rules.bullet_list_open = function() { return `<ul class="flexblock gallery">`; };
md.renderer.rules.bullet_list_close = function() { return `</ul>`; };
md.renderer.rules.fenced_code_open = function(tokens, idx, options, env, self) { return `<div class="column"> <pre>`; };
md.renderer.rules.fenced_code_close = function(tokens, idx, options, env, self) { return `</pre> </div>`; };
md.renderer.rules.link_open = function (tokens, idx, options, env, self) { const token = tokens[idx]; const alt = tokens[idx + 1].content; const href = tokens[idx].attrs[token.attrIndex('href')][1]; const match = alt.match(/^(IMG)-(.*?)-(.*)$/); if (match) { const prefix = match[1]; const imgHref = match[2]; const description = match[3]; tokens[idx + 1].content = description;
return `<a href="${href}"> <figure> <img alt="" src="${imgHref}"> <figcaption> <h2> `; }
return self.renderToken(tokens, idx, options); };
md.renderer.rules.link_close = function (tokens, idx, options, env, self) { return `</h2> </figcaption> </figure> </a>`; };
md.renderer.rules.blockquote_open = function (tokens, idx, options, env, self) { return '<ul class="flexblock features"><li>'; };
md.renderer.rules.blockquote_close = function (tokens, idx, options, env, self) { return '</li></ul>'; };
const htmlContent = md.render(markdownContent);
const fullHtml = headerContent + htmlContent + footerContent;
const outputFilePath = 'index.html'; fs.writeFileSync(outputFilePath, fullHtml, 'utf-8');
console.log(`Index HTML 文件已生成: ${outputFilePath}`);
markdownFiles.forEach(markdownFile => { const markdownFilePath = path.join(markdownDirPath, markdownFile); const markdownContent = fs.readFileSync(markdownFilePath, 'utf-8');
md.renderer.rules.image = function (tokens, idx, options, env, self) { const token = tokens[idx]; const alt = token.content; const src = token.attrs[token.attrIndex('src')][1];
const backgroundStyles = { 'BackGround': '', 'BackGround-aligncenter': ' aligncenter', };
const className = backgroundStyles[alt];
const backgroundImage = src ? `url('${src}')` : `url('../Assert/CFLMY.webp')`;
if (className !== undefined) { return `<span class="background" style="background-image:${backgroundImage};"></span>\n<div class="wrap${className}">`; }
return self.renderToken(tokens, idx, options); };
const htmlContent = md.render(markdownContent);
const outputHtml = headerContent + htmlContent + footerContent;
const outputFileName = path.basename(markdownFile, '.md') + '.html'; const outputFilePath = path.join('html', outputFileName);
if (!fs.existsSync('html')) { fs.mkdirSync('html'); }
fs.writeFileSync(outputFilePath, outputHtml, 'utf-8');
console.log(`md 目录下的HTML 文件已生成: ${outputFilePath}`); });
|