Pete Gonzalez

Results 706 comments of Pete Gonzalez

@rbuckton The word-wrapping is tracked by [issue #200](https://github.com/microsoft/tsdoc/issues/200#issuecomment-565770852).

BTW when we chatted with the compiler owners, they cautioned us against fostering an unnecessary tribal boundary between "JavaScript files" and "TypeScript files". What if someone works in TypeScript but...

@mike-north pointed me to this listing of JSDoc tags that are supported by the TypeScript compiler for type analysis: https://github.com/Microsoft/TypeScript/wiki/JSDoc-support-in-JavaScript We should definitely include these in TSDoc's standard set of...

I wanted to enable general HTML tags, however for security reasons it requires a script sanitizer such as [sanitize-html](https://www.npmjs.com/package/sanitize-html) or [xss](https://www.npmjs.com/package/xss). @iclanton could we add that to the loader?

[dompurify](https://www.npmjs.com/package/dompurify) looks to be more self-contained, and is hosted by cdnjs.com.

@iclanton started a PR https://github.com/Microsoft/tsdoc/pull/139 to implement this. However, when the playground tries to render `DocHtmlStartTag` and `DocHtmlEndTag` as React virtual DOM, there isn't any way to render half of...

Hey @suneettipirneni, that would be awesome to finally get this implemented! I haven't thought about it in a long time. > Would we still want to store the opening and...

Much appreciated! I apologize for the slow response -- I've been really busy this week. I will take a look over the weekend. Thanks for patience!

We should implement support for Markdown headings. But I think the TSDoc heading should start at level 1 (`#`) not level 4 (`####`), because doc comments shouldn't make assumptions about...