Skip to content

Commit

Permalink
Fix twemojis display
Browse files Browse the repository at this point in the history
Text in Markdown with emojis has been tried to be fetched from the
/raw route as embeds.
This commit changes the renderer method to compute the hex string for
a unicode emoji to be able to use the /twemoji asset folder.
  • Loading branch information
sebastinez committed Oct 23, 2024
1 parent 2b058a1 commit df7da4f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
8 changes: 7 additions & 1 deletion src/components/Markdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
// pointing at the repos /raw endpoint.
for (const i of container.querySelectorAll("img")) {
const imagePath = i.getAttribute("src");
const imageClass = i.getAttribute("class");
// If the image is an oid embed
if (imagePath && isCommit(imagePath)) {
Expand All @@ -160,7 +161,8 @@
}
// Make sure the source isn't a URL before trying to fetch it from the repo
if (imagePath && !isUrl(imagePath) && !imagePath.startsWith("/twemoji")) {
const emoji = imageClass && imageClass === "txt-emoji";
if (imagePath && !isUrl(imagePath) && !emoji) {
i.setAttribute("src", `${rawPath}/${canonicalize(imagePath, path)}`);
}
}
Expand Down Expand Up @@ -349,6 +351,10 @@
max-width: 100%;
}
.markdown :global(img.txt-emoji) {
height: 1rem;
}
.markdown :global(code) {
font-family: var(--font-family-monospace);
font-size: var(--font-size-small);
Expand Down
8 changes: 7 additions & 1 deletion src/lib/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,13 @@ export const markdownWithExtensions = new Marked(
katexMarkedExtension({ throwOnError: false }),
markedLinkifyIt({}, { fuzzyLink: false }),
markedFootnote({ refMarkers: true }),
markedEmoji({ emojis }),
markedEmoji({
emojis,
renderer: (token: { name: string; emoji: string }) => {
const src = token.emoji.codePointAt(0)?.toString(16);
return `<img alt="${token.name}" src="/twemoji/${src}.svg" class="txt-emoji">`;
},
}),
((): MarkedExtension => ({
extensions: [anchorMarkedExtension],
}))(),
Expand Down
2 changes: 1 addition & 1 deletion src/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export function twemoji(
base: "/",
folder: "twemoji",
ext: ".svg",
className: `txt-emoji`,
className: "txt-emoji",
});
}

Expand Down

0 comments on commit df7da4f

Please sign in to comment.