We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to customize mdsvex and ran into a problem with code snippets.
//layout.svelte <script lang="ts" context="module"> import h1 from "./markdown/h1.svelte"; import h2 from "./markdown/h2.svelte"; import h3 from "./markdown/h3.svelte"; import blockquote from "./markdown/blockquote.svelte"; import code from "./markdown/code.svelte"; export { h1, h2, h3, blockquote, code }; </script> <slot></slot>
The headers and blockquotes are compiling without problem. However the code component doesn't.
//code.svelte <code class="bg-slate-300"> <slot></slot> </code>
Another question is how can i make a difference in simple and triple code snippets?
and triple
The text was updated successfully, but these errors were encountered:
You may want to checkout this post: #100 (comment)
Sorry, something went wrong.
No branches or pull requests
I am trying to customize mdsvex and ran into a problem with code snippets.
The headers and blockquotes are compiling without problem. However the code component doesn't.
Another question is how can i make a difference in simple
and triple
code snippets?The text was updated successfully, but these errors were encountered: