Adam Smith

Results 2 issues of Adam Smith

I ran into [this](https://github.com/jsdoc2md/jsdoc-to-markdown/issues/73) issue where `@example` tags on class docs get ignored if a description (tagless description or `@description` -- not `@classdesc`) is not included. Based on [this line](https://github.com/jsdoc2md/jsdoc-parse/blob/master/lib/transform.js#L126)...

This fixes addresses the [linked issue](https://github.com/jsdoc2md/jsdoc-parse/issues/33): ```javascript /** * @class LinkedList * * @example * const linkedList = new LinkedList(); */ class LinkedList { ``` jsdoc-parse currently ignores the example...