docusaurus-plugin-openapi-docs
Version:
OpenAPI plugin for Docusaurus.
24 lines (21 loc) • 615 B
text/typescript
/* ============================================================================
* Copyright (c) Palo Alto Networks
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* ========================================================================== */
import { clean, create } from "./utils";
export function createHeading(heading: string) {
return [
create(
"Heading",
{
children: clean(heading),
as: "h1",
className: "openapi__heading",
},
{ inline: true }
),
`\n\n`,
];
}