83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
const fs = require("fs");
|
|
const path = require("path");
|
|
const TOKENS_EXT = /\.tokens\.json$/;
|
|
// https://developer.mozilla.org/en-US/docs/Web/Media/Formats
|
|
const IMG_EXT = /\.(apng|avif|gif|jpg|jpeg|jfif|pjpeg|pjp|png|svg|webp)$/;
|
|
const AUDIO_EXT = /\.(mp3|wav|aac|aacp|mpeg|off|flac)$/;
|
|
const VIDEO_EXT = /\.(mp4|webm)$/;
|
|
|
|
module.exports = (options) => (file, cb) => {
|
|
if (!TOKENS_EXT.test(file.path)) return cb(null);
|
|
|
|
// TODO: meta: language, description, canonical
|
|
file.contents = Buffer.from(`<!DOCTYPE html>
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">${
|
|
options.css
|
|
? `\n<meta name="color-scheme" content="dark light">\n<style>${fs.readFileSync(
|
|
path.resolve(__dirname, "./gmi.min.css"),
|
|
"utf8"
|
|
)}</style>`
|
|
: "a, audio {display: block;}"
|
|
}
|
|
<body>
|
|
${toHTML(JSON.parse(file.contents.toString("utf8")), options)}
|
|
</body>
|
|
</html>
|
|
`);
|
|
|
|
file.path = file.path.replace(TOKENS_EXT, ".html");
|
|
if (!options.silent) console.log(file.path);
|
|
return cb(null, file);
|
|
};
|
|
|
|
function toHTML(tokens, options) {
|
|
let body = [];
|
|
|
|
let cursor = tokens.shift();
|
|
while (tokens.length) {
|
|
if (cursor.pre) {
|
|
body.push(`<pre${cursor.alt ? `title="${cursor.alt}"` : ""}>`);
|
|
const closing = tokens.findIndex((token) => token.pre);
|
|
body = body.concat(tokens.slice(0, closing).map(({ text }) => text));
|
|
body.push("</pre>");
|
|
tokens = tokens.slice(closing + 1);
|
|
}
|
|
if (cursor.li) {
|
|
body.push(`<ul>`);
|
|
const closing = tokens.findIndex((token) => !token.li);
|
|
body = body.concat(tokens.slice(0, closing).map(line));
|
|
body.push("</ul>");
|
|
tokens = tokens.slice(closing + 1);
|
|
}
|
|
body.push(line(cursor, options));
|
|
cursor = tokens.shift();
|
|
}
|
|
|
|
return body.join("\n");
|
|
}
|
|
|
|
function line(
|
|
{ text, href, title, pre, alt, h1, h2, h3, li, quote },
|
|
{ inline }
|
|
) {
|
|
if (text) return `<p>${text}</p>`;
|
|
if (href) {
|
|
if (inline.images && IMG_EXT.test(href))
|
|
return `<img src="${href}" title="${title}"/>`;
|
|
if (inline.audio && AUDIO_EXT.test(href))
|
|
return `<audio controls src="${href}" title="${title}"></audio>`;
|
|
if (inline.video && VIDEO_EXT.test(href))
|
|
return `<video controls src="${href}" title="${title}"/></video>`;
|
|
|
|
return `<a href="${href}">${title || href}</a>`;
|
|
}
|
|
if (h1) return `<h1>${h1}</h1>`;
|
|
if (h2) return `<h2>${h2}</h2>`;
|
|
if (h3) return `<h3>${h3}</h3>`;
|
|
if (li) return `<li>${li}</li>`;
|
|
if (quote) return `<blockquote>${quote}</blockquote>`;
|
|
return `<p><br></p>`;
|
|
}
|