Vizel API / core/src / createVizelCalloutExtension
Function: createVizelCalloutExtension()
ts
function createVizelCalloutExtension(options?): Node<VizelCalloutOptions, any>;Defined in: packages/core/src/extensions/callout.ts:439
Create a configured Callout extension.
Parameters
| Parameter | Type |
|---|---|
options | VizelCalloutOptions |
Returns
Node<VizelCalloutOptions, any>
Example
typescript
import { createVizelCalloutExtension } from '@vizel/core'
const extensions = [
createVizelCalloutExtension({ markdownFormat: "github-alerts" }),
]