Skip to content

jsdoc plugin, contain some annotations and features, such as @ coderef(import a codeblock into doc)(一个jsdoc插件,包含一些标识符和特性,如@ coderef(将代码块导入文档))

License

HIA-Studio/jsdoc-plugin-hia

Repository files navigation

jsdoc-plugin-hia


中文

jsdoc-plugin-hia is a jsdoc plugin, contains some annotations and features, such as @coderef(import a codeblock into doc).

Why

jsdoc is a common JS document generator. Although the development of jsdoc in the past year (2017 ~) is almost stagnant, and the rising stars such as esdoc have a great catch-up potential, but based on my personal observation and judgment, jsdoc is still the first choice of such tools, so I chose jsdoc as the document generator of open source projects. Maybe, with the passage of time, it is not excluded that other tools (such as esdoc) will be used in the future.

When using jsdoc, I found a troublesome issue that is when using @example to introduce some sample code, I can only write it manually, but in fact, we often only need to introduce some existing code fragments of the project itself, so I have to copy the same code again, which is obviously an unpleasant thing. So I hope to solve this problem. First of all, I carefully read the whole document of jsdoc, and found no official identifier or API for this requirement. Neither did I find any similar requirement submission in the official issues. Then I searched some GitHub and found no such plug-in to meet my requirement. I would like to submit an issue, but look at the official progress of this development, most of the hope is not very good. Finally, I decided to study the plug-in mechanism of jsdoc and implement one by myself. This is the beginning and end of the birth of jsdoc-plugin-hia.

With jsdoc-plugin-hia, you can wrap a block of code with @codeblock before and after which needs to be referenced, and then use @coderef annotation in the document that needs to be referenced.

Installation instructions

  • Copy jsdoc-plugin-hia.js directly to your project and add the required dependencies to the package.json file.
  • npm install(It's better to install docdash-hia at the same time)
    npm i jsdoc-plugin-hia -D

settings

Set "plugins" and "markdown" attributes in jsdoc-conf.json

"plugins": [
    "plugins/markdown",
    "jsdoc-plugin-hia"
],
"markdown": {
    "hardwrap": true,
    "idInHeadings":true,
    "tags": ["file","overview","property","todo"]
},
"opts": {
    "template"    : "./node_modules/docdash-hia"
},

tutorial

Getting started:

API

API doc link

Current Version: 1.0.3

Only @coderef is implemented.

Todo

  1. preview source: For each file's members, classes, methods, modules and so on, implement the corresponding code preview functionality. This is a code preview function similar to sassdoc.
  2. i18n: Multilingual document function, build a set of mechanisms, so that it can be structured to facilitate the establishment of multilingual document annotations.

Thanks

License: MIT

About

jsdoc plugin, contain some annotations and features, such as @ coderef(import a codeblock into doc)(一个jsdoc插件,包含一些标识符和特性,如@ coderef(将代码块导入文档))

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published