No description
Find a file
2025-03-29 23:17:14 +01:00
dist add class option 2025-03-29 23:17:14 +01:00
generate init 2025-03-29 23:04:15 +01:00
src add class option 2025-03-29 23:17:14 +01:00
.gitignore init 2025-03-29 23:04:15 +01:00
package.json init 2025-03-29 23:04:15 +01:00
pnpm-lock.yaml init 2025-03-29 23:04:15 +01:00
README.md init 2025-03-29 23:04:15 +01:00
tsconfig.json init 2025-03-29 23:04:15 +01:00

custom emoji plugin for rehype

yeah i'm not writing an actual readme for this yet lmao

usage

import { unified } from "unified";
import remarkParse from "remark-parse";
import rehypeStringify from "rehype-stringify";
import remarkRehype from "remark-rehype";
import rehypeCustomEmoji from "rehype-custom-emoji-plugin";

import jsonfileData from "./emojis.json" with { type: "json" };

const processor = unified()
  .use(remarkParse)
  .use(remarkRehype)
  .use(rehypeCustomEmoji, {
    emojis: jsonfileData.emojis,
    sourceFile: jsonfileData.source,
    hidpiSourceFile: jsonfileData.hidpiSource,
    size: jsonfileData.size,
  })
  .use(rehypeStringify);

const file = await processor.process(":neofox:");

generate a spritesheet file with generate/generate.js