UNPKG

@mdfriday/foundry

Version:

The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.

15 lines (14 loc) 477 B
import { Source } from "@internal/domain/content/entity/pagesource"; import { PageOutput } from "@internal/domain/content"; import { PageImpl } from "@internal/domain/content/entity/page"; export declare class Output { private source; private pageKind; private baseName; private target; constructor(source: Source, pageKind: string); private setBasename; private buildTarget; private createBasicResult; output(page: PageImpl): PageOutput; }