jsdoc 0.15.0

JsDoc parser writen in rust
Documentation
/**
    Markdown asterisks in a doclet that does not use leading asterisks.
    **Strong** is strong.

    * List item 1.
    * List item 2.
    @param {string} thingy - The thingy.
 */
function test1(thingy) {

}

/**
 * Markdown asterisks in a doclet that uses leading asterisks.
 * **Strong** is strong.
 *
 * * List item 1.
 * * List item 2.
 * @param {string} thingy - The thingy.
 */
function test2(thingy) {

}