UNPKG

markdown-to-standalone-html

Version:

Markdown to standalone HTML converter. It generates a standalone HTML with all CSS and images embedded, browsable responsible TOC, math support (KATEX), code syntax highlighting (highlight.js), and rendering of lyrics with chords

69 lines (68 loc) 1.93 kB
{ "name": "markdown-to-standalone-html", "version": "2.1.1", "description": "Markdown to standalone HTML converter. It generates a standalone HTML with all CSS and images embedded, browsable responsible TOC, math support (KATEX), code syntax highlighting (highlight.js), and rendering of lyrics with chords", "keywords": [ "markdown", "markdown-it", "html", "standalone", "anchor", "math", "katex", "embedded image", "chords", "lyrics" ], "main": "./dist/index.js", "author": { "name": "Juan Hernández Serrano", "email": "j.hernandez@upc.edu", "url": "https://github.com/juanelas" }, "repository": "github:juanelas/markdown-to-standalone-html", "license": "MIT", "preferGlobal": true, "bin": "./dist/markdown-to-standalone-html.js", "scripts": { "clean": "rimraf dist/", "prebuild": "npm run clean", "build": "tsc", "postbuild": "chmod +x ./dist/markdown-to-standalone-html.js", "lint": "ts-standard --fix", "watch": "tsc -w", "test": "./dist/markdown-to-standalone-html.js example/example.md" }, "dependencies": { "@traptitech/markdown-it-katex": "^3.3.1", "bootstrap": "^5.1.3", "chordsong": "^1.0.2", "commander": "^9.0.0", "highlight.js": "^11.3.1", "html-minifier": "^4.0.0", "image-type": "^4.1.0", "is-svg": "^4.2.1", "jquery": "^3.5.1", "markdown-it": "^13.0.1", "markdown-it-anchor": "^8.4.1", "markdown-it-chords": "^1.0.3", "markdown-it-implicit-figures": "^0.10.0", "markdown-toc": "^1.2.0", "sync-request": "^6.1.0", "uslug": "^1.0.4" }, "ts-standard": { "ignore": [ "/dist/" ] }, "devDependencies": { "@types/html-minifier": "^4.0.1", "@types/katex": "^0.11.1", "@types/node": "^14.0.0", "@types/uslug": "^1.0.1", "rimraf": "^3.0.2", "ts-standard": "^11.0.0", "typescript": "^4.4.4" } }