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
Hi,
Is it possible to add a custom type parser, besides those already included?
Use case:
I have strings in the following format:
<think> Lorem ipsum... </think> Rest of the text...
I need to display the text inside with a custom format.
Is there a way to do this with MDC?
The text was updated successfully, but these errors were encountered:
Create a component with a slot, like
<script setup lang="ts"> </script> <template> <div class="think"> </ slot> </div> </template> <style scoped> .think { ... } </style>
and use it with
::think Lorem ipsum :: Rest of the text...
?
Sorry, something went wrong.
No branches or pull requests
Hi,
Is it possible to add a custom type parser, besides those already included?
Use case:
I have strings in the following format:
I need to display the text inside with a custom format.
Is there a way to do this with MDC?
The text was updated successfully, but these errors were encountered: