import type { Attributes } from "frontend/elementcreate";
import * as elements from "frontend/elementcreate";
function MediaElement(attributes: Attributes, contents: string[]) {
const ret =
;
return ret;
}
function MyHeader(attributes: Attributes, contents: string[]) {
return
{attributes['title']} {attributes['num'] ? ": " + attributes['num'] : ""}
;
}
function MediaContainer(attributes: Attributes, contents: string[]) {
return {contents[0]}
;
}
export { MediaElement, MyHeader, MediaContainer }