mdka 1.6.9

HTML to Markdown converter
Documentation
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env node

// examples which will not be delivered

const napiRun = require("../index.js");

napiRun.fromHtml("<h1>Hello, world.</h1>")
napiRun.fromFile("./awesome.html")
napiRun.fromHtmlToFile("<h1>Hello, world.</h1>", "./awesome.md", false)
napiRun.fromFileToFile("./awesome.html", "./awesome.md", false)