Dan Davies Brackett
Dan Davies Brackett

Reputation: 10071

What reference material exists for writing my own -vsdoc.js for JS Intellisense in VS2008?

I've got the vsdoc for jquery working in my project, but I'd also like to get intellisense for my own JS files - including the verbose <param>, <field>, and <returns> tags and so on. Where can I find a specification for the format of those comments, beyond the -vsdoc.js for jquery?

Upvotes: 9

Views: 667

Answers (1)

Jon Erickson
Jon Erickson

Reputation: 114846

Here is a blog post explaining how to do some JavaScript XML documentation

But personally I would just look at jQuery's -vsdoc file for reference.

Upvotes: 6

Related Questions