import type { BlockHandler } from "./handler.type.js"; export const hrHandler = { render(_raw: string): string { return "
"; }, serialize(_raw: string): string { return "---"; }, } satisfies BlockHandler;