UNPKG

@mdfriday/foundry

Version:

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

8 lines (7 loc) 239 B
import { Module } from '../type'; export declare class Lang { private sourceLangMap; constructor(modules: Module[]); getSourceLang(source: string): [string, boolean]; } export declare function newLang(modules: Module[]): Lang;