onury / docma

A powerful tool to easily generate beautiful HTML documentation from JavaScript (JSDoc), Markdown and HTML files.
https://onury.io/docma
MIT License
334 stars 34 forks source link

HTML comments in markdown are rendered as plaintext #104

Open wvffle opened 4 years ago

wvffle commented 4 years ago

well, to express it simply, i can see HTML comments in a rendered markdown file as a plaintext. Here is a screenshot: doc screenshot Here is my config:

{
  "src": [
    "./src/**.js",
    "./lib/**.js",
    "./index.js",
    "./README.md"
  ],
  "dest": "docs",
  "jsdoc": {
    "package": true,
    "undocumented": true,
    "sort": "kind"
  }
}