Skip to main content
Module

x/markdeno/mod.ts>writeMarkdown

MarkDeno is a way to generate documentation in markdown files.
Go to Latest
function writeMarkdown
import { writeMarkdown } from "https://deno.land/x/markdeno@markdeno@0.0.2/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>