runem / web-component-analyzer

CLI that analyzes web components and emits documentation
https://runem.github.io/web-component-analyzer
MIT License
502 stars 63 forks source link

Multiline @fires event description is not emitted in the output #129

Closed ashubham closed 4 years ago

ashubham commented 4 years ago
/**
* @fires load - This is the first line.
* This is the second line.
*/

Does not work, the description output for both json/markdown is empty for the event.

"events": [
        {
          "name": "load"
        }
      ]

This works however:

/**
* @fires load - This is the first line. This is the second line.
*/
runem commented 4 years ago

Hi Ashish, thanks for using WCA and thanks for reporting this issue :-)

This bug is fixed in the next version that is being released in a couple of days. You can verify it by trying the beta version 1.0.0-next.16. I will close this issue when it has been released.

ashubham commented 4 years ago

Thanks!