We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b111b commit 1882fa0Copy full SHA for 1882fa0
app/routes/MdxRoute.res
@@ -254,7 +254,9 @@ let default = () => {
254
<title> {React.string(attributes.metaTitle->Nullable.getOr(attributes.title))} </title>
255
<meta name="description" content={attributes.description->Nullable.getOr("")} />
256
{if (pathname :> string) == "/docs/manual/api" {
257
- <ApiOverviewLayout.Docs> {component()} </ApiOverviewLayout.Docs>
+ <ApiOverviewLayout.Docs>
258
+ <div className="markdown-body"> {component()} </div>
259
+ </ApiOverviewLayout.Docs>
260
} else if (
261
(pathname :> string)->String.includes("docs/manual") ||
262
(pathname :> string)->String.includes("docs/react")
0 commit comments