Dump version of olid-markdown

This commit is contained in:
Melroy van den Berg 2024-11-27 21:45:34 +01:00
parent 422a959db5
commit fb2f3069e7
No known key found for this signature in database
GPG key ID: 71D11FF23454B9D7
3 changed files with 43 additions and 553 deletions

View file

@ -19,7 +19,7 @@
"postcss": "^8.4.47",
"remark-gfm": "^4.0.0",
"solid-js": "^1.9.1",
"solid-markdown": "^2.0.13",
"solid-markdown": "^2.0.14",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",

592
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -5,7 +5,7 @@ import { SolidMarkdown } from 'solid-markdown';
const MarkdownInner: ParentComponent = (props) => {
return (
<SolidMarkdown class="text-left markdown" remarkPlugins={[remarkGfm]}>
{props.children}
{props.children as string}
</SolidMarkdown>
);
};