13 lines
265 B
TypeScript
13 lines
265 B
TypeScript
import { component } from "@astrojs/markdoc/config";
|
|
|
|
/** @type {import('@markdoc/markdoc').Schema} */
|
|
export const tweetEmbed = {
|
|
render: component("./src/components/mdoc/TweetEmbed.astro"),
|
|
attributes: {
|
|
url: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
};
|