[+] banner

pull/226/head
Elihuso Quigley 2024-05-17 20:28:56 +08:00
parent 91b5e81533
commit eece557305
3 changed files with 61 additions and 35 deletions

View File

@ -8,7 +8,7 @@ import metadataParser from 'markdown-yaml-metadata-parser';
import { renderMdx } from "./mdx.js"; import { renderMdx } from "./mdx.js";
import moment from "moment"; import moment from "moment";
import { Icon, backSVG } from "./icon.js"; import { handleFeatures } from "./feature.js";
const PUBLIC_DIR = "public"; const PUBLIC_DIR = "public";
@ -150,14 +150,7 @@ function buildPeoplePages() {
// Read markdown page and remove markdown meta // Read markdown page and remove markdown meta
let markdown = metadataParser(fs.readFileSync(path.join(srcPath, `page${lang}.md`), "utf-8")).content.replaceAll("<!--", "{/* ").replaceAll("-->", " */}"); let markdown = metadataParser(fs.readFileSync(path.join(srcPath, `page${lang}.md`), "utf-8")).content.replaceAll("<!--", "{/* ").replaceAll("-->", " */}");
// Handle Footnote markdown = handleFeatures(markdown)
markdown = handleFootnote(markdown)
// Handle Delete Line: ~~something~~ to <del>something</del>
markdown = handleDeleteLine(markdown)
// Handle Icon
markdown = handleNoteIcon(markdown)
// Autocorrect markdown // Autocorrect markdown
markdown = autocorrect.formatFor(markdown, 'markdown') markdown = autocorrect.formatFor(markdown, 'markdown')
@ -172,32 +165,6 @@ function buildPeoplePages() {
} }
} }
function handleFootnote(md: string) {
if (!md.includes('[^')) return md
// Replace footnote references with HTML superscript tags
return md.replace(/\[\^(\d+)\](?::\s*(.*))?/g, (match, id, text) => text ?
// Footnote definition
`<li id="footnote-${id}">${text}<a href="#footnote-ref-${id}">${backSVG}</a></li>` :
// Footnote reference
`<sup><a href="#footnote-${id}" id="footnote-ref-${id}">${id}</a></sup>`
)
// Wrap the footnote definitions in an ordered list
.replace(/(<li id="footnote.*<\/li>)/gs, '<ol>\n$1\n</ol>')
}
function handleDeleteLine(md: string): string {
if (!md.includes('~~')) return md;
return md.replace(/~~(.*?)~~/g, (match, text) => ("<del>" + text + "</del>"));
}
function handleNoteIcon(md: string): string {
if (!md.includes('[!')) return md;
return md.replace(/\[\!(\w+)\](?::\s*(.*))?/g, (match, icon, _) => (Icon[icon as string]));
}
// Copy `people/${dirname}/photos` to `dist/people/${dirname}/`. // Copy `people/${dirname}/photos` to `dist/people/${dirname}/`.
function copyPeopleAssets() { function copyPeopleAssets() {
const PEOPLE_ASSETS = ["photos", "backup", "page.md"]; const PEOPLE_ASSETS = ["photos", "backup", "page.md"];

6
scripts/data.ts Normal file
View File

@ -0,0 +1,6 @@
export interface BannerData {
type: string,
icon: string,
title: string,
text: string
}

53
scripts/feature.ts Normal file
View File

@ -0,0 +1,53 @@
import { Icon, backSVG } from "./icon.js";
import { BannerData } from "./data.js";
function handleFootnote(md: string) {
if (!md.includes("[^")) return md;
// Replace footnote references with HTML superscript tags
return (
md.replace(/\[\^(\d+)\](?::\s*(.*))?/g, (match, id, text) => text ? // Footnote definition
`<li id="footnote-${id}">${text}<a href="#footnote-ref-${id}">${backSVG}</a></li>` : // Footnote reference
`<sup><a href="#footnote-${id}" id="footnote-ref-${id}">${id}</a></sup>`
)
// Wrap the footnote definitions in an ordered list
.replace(/(<li id="footnote.*<\/li>)/gs, "<ol>\n$1\n</ol>")
);
}
function handleDeleteLine(md: string): string {
if (!md.includes("~~")) return md;
return md.replace(/~~(.*?)~~/g, (match, text) => "<del>" + text + "</del>");
}
function handleNoteIcon(md: string): string {
if (!md.includes("[!")) return md;
return md.replace(/\[\!(\w+)\](?::\s*(.*))?/g, (match, icon, _) => Icon[icon as string]);
}
function handleBanner(md: string): string {
if (!md.includes('[[')) return md;
return md.replace(/\[\[(.*?)\]\]/g, (match, raw) => {
const data = JSON.parse(raw) as BannerData
if (data.type != 'banner') return match
return `<div style="width: 90%; margin: 10px auto; min-height: 100px; display: box; background: #fff4eb; border-radius: 30px; border-color: rgba(166, 134, 89, 0.84); border-style: solid; border-width: 2px"><div style="height: 80px; width: 80px; margin-left: 10px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px; display: inline-grid; vertical-align: top"><img src="${data.icon}" style="width: 100%; height: 100%; border-radius: 20px" /></div><div style="height: 80px; width: calc(100% - 150px); margin-left: 10px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px; display: inline-grid; vertical-align: top" ><h3 style="color: #70512a; margin: 5px; font-size: 1.4rem">${data.title}</h3><p style="color: rgba(166, 134, 89, 0.84); margin: 5px; font-size: 1rem">${data.text}</p></div></div>`
})
}
export function handleFeatures(markdown: string): string {
// Handle Footnote
let md = handleFootnote(markdown)
// Handle Delete Line: ~~something~~ to <del>something</del>
md = handleDeleteLine(md)
// Handle Icon
md = handleNoteIcon(md)
// Handle Banner
md = handleBanner(md)
return md
}