mirror of
https://github.com/fmhy/edit.git
synced 2026-02-19 01:31:41 +11:00
base64 decode, announcement pill
This commit is contained in:
parent
34c1f13d8b
commit
b80e26444d
10 changed files with 159 additions and 17 deletions
26
.vitepress/markdown.ts
Normal file
26
.vitepress/markdown.ts
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import { type MarkdownRenderer } from "vitepress";
|
||||
|
||||
// FIXME: tasky: possibly write less horror jank?
|
||||
export function copyableCodePlugin(md: MarkdownRenderer) {
|
||||
const decode = (str: string): string => Buffer.from(str, "base64").toString("binary");
|
||||
// Save the original rule for backticks
|
||||
const defaultRender =
|
||||
md.renderer.rules.code_inline ||
|
||||
function(tokens, idx, options, env, self) {
|
||||
return self.renderToken(tokens, idx, options);
|
||||
};
|
||||
|
||||
md.renderer.rules.code_inline = function(tokens, idx, options, env, self) {
|
||||
// @ts-expect-error shut the fuck up already I HATE THIS
|
||||
if (!env.frontmatter.title || (env.frontmatter.title && !env.frontmatter.title === "base64")) {
|
||||
return defaultRender(tokens, idx, options, env, self);
|
||||
}
|
||||
const token = tokens[idx];
|
||||
const content = token.content;
|
||||
const buttonHTML = `<button class='base64' onclick="navigator.clipboard.writeText('${decode(
|
||||
content,
|
||||
)}')"><code>${content}</code></button>`;
|
||||
|
||||
return buttonHTML;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue