syavorsky / comment-parser

Generic JSDoc-like comment parser.
MIT License
239 stars 24 forks source link

Change the comment tags for different languages #158

Open normal1ze opened 2 years ago

normal1ze commented 2 years ago

Is there a way in options that I can change the comment style? For example:

For JS:

/**
 * Description may go
 * over multiple lines followed by @tags
 * @param {string} name the name parameter
 * @param {any} value the value parameter
 */

For Ruby:

##
 # Description may go
 # over multiple lines followed by @tags
 # @param {string} name the name parameter
 # @param {any} value the value parameter
##

Etc etc....

syavorsky commented 2 years ago

Nah,sorry. But sounds like a good feature to have one day.