Skip to main content
Go to Latest
function writeMarkdown
import { writeMarkdown } from "https://deno.land/x/markdeno@markdeno@0.0.1/mod.ts";

Analyzes an input file and writes to a specified output file.

Examples

MarkDeno.writeMarkdown("file.ts","output.md");

Parameters

input: string

Input file to analyze.

output: string

Output file to write markdown too.

optional
config: Config

Optional configurations for the parser.

Returns

Promise<void>