From f59d7b67cf3142da5ba5aab3a7816c0e507e6691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Bl=C3=A4ttermann?= Date: Mon, 14 Nov 2022 00:06:52 +0100 Subject: [PATCH] Add more components to markdown --- website/src/markdown.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/website/src/markdown.js b/website/src/markdown.js index cdcdea665..3554d8be8 100644 --- a/website/src/markdown.js +++ b/website/src/markdown.js @@ -12,9 +12,10 @@ import { Li, Ol, Ul } from './components/list' import Section, { Hr } from './components/section' import { Table, Td, Th, Tr, Tx } from './components/table' import Tag from './components/tag' -import { Abbr, H2, H3, H4, H5, Help } from './components/typography' +import { Abbr, H2, H3, H4, H5, Label, Help } from './components/typography' import { Integration, IntegrationLogo } from './widgets/integration' import Project from './widgets/project' +import { Logos, Colors, Patterns } from './widgets/styleguide' export const remarkComponents = { createElement: React.createElement, @@ -62,5 +63,10 @@ export const remarkComponents = { project: Project, integration: Integration, integrationlogo: IntegrationLogo, + + Label, + Logos, + Colors, + Patterns, }, }