Content descriptions can now be parsed as markdawn
This commit is contained in:
parent
025e4c4d31
commit
51f050819e
@ -1,6 +1,7 @@
|
|||||||
import Chip from "components/Chip";
|
import Chip from "components/Chip";
|
||||||
import Img, { ImageQuality } from "components/Img";
|
import Img, { ImageQuality } from "components/Img";
|
||||||
import InsetBox from "components/InsetBox";
|
import InsetBox from "components/InsetBox";
|
||||||
|
import Markdawn from "components/Markdown/Markdawn";
|
||||||
import { GetContentQuery, UploadImageFragment } from "graphql/generated";
|
import { GetContentQuery, UploadImageFragment } from "graphql/generated";
|
||||||
import { AppStaticProps } from "queries/getAppStaticProps";
|
import { AppStaticProps } from "queries/getAppStaticProps";
|
||||||
import { prettyinlineTitle, prettySlug, slugify } from "queries/helpers";
|
import { prettyinlineTitle, prettySlug, slugify } from "queries/helpers";
|
||||||
@ -96,7 +97,11 @@ export default function ThumbnailHeader(props: Props): JSX.Element {
|
|||||||
)}
|
)}
|
||||||
{languageSwitcher}
|
{languageSwitcher}
|
||||||
</div>
|
</div>
|
||||||
{description && <InsetBox className="mt-8">{description}</InsetBox>}
|
{description && (
|
||||||
|
<InsetBox className="mt-8">
|
||||||
|
{<Markdawn text={description}></Markdawn>}
|
||||||
|
</InsetBox>
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user