Add pug and html renderer. Implement hidden flag.
This commit is contained in:
parent
aa563e60ea
commit
3684688cdc
16 changed files with 119 additions and 33 deletions
7
types/renderer/markdown.d.ts
vendored
Normal file
7
types/renderer/markdown.d.ts
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
import Parser, { File } from "./../renderer.js";
|
||||
export default class Markdown implements Parser {
|
||||
name: string;
|
||||
fileExtensions: string[];
|
||||
loadAsHTML(filePath: string): File;
|
||||
}
|
||||
export declare function parseMarkdown(obj: any): void;
|
Loading…
Add table
Add a link
Reference in a new issue