import type { Attributes } from "../elementcreate"; import * as elements from "../elementcreate"; function MediaElement(attributes: Attributes, contents: string[]) { const ret =
{attributes['title']}

{attributes['released']}

; 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 }