We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9c535 commit 1cc6c78Copy full SHA for 1cc6c78
src/lib/components/MarkdownRenderer.svelte
@@ -17,9 +17,11 @@
17
export { className as class };
18
</script>
19
20
+<!-- TODO: actually figure out how to overflow-x-auto the code blocks -->
21
<span
22
class={cn(
- "prose dark:prose-invert prose-a:no-underline prose-a:underline-offset-4 prose-a:[overflow-wrap:_anywhere] hover:prose-a:underline prose-code:text-wrap prose-code:[overflow-wrap:_anywhere] prose-li:my-1",
23
+ "prose dark:prose-invert prose-a:no-underline prose-a:underline-offset-4 prose-a:[overflow-wrap:_anywhere] hover:prose-a:underline prose-code:[overflow-wrap:_anywhere] prose-li:my-1",
24
+ "prose-code:text-wrap", // remove with TODO
25
inline && "*:inline",
26
className
27
)}
0 commit comments