I'm using Visual Studio Enterprise 2015 & Resharper 10 for my javascript project. I'm writing documentation for my javascript functions. These documentation also helps me with intellisense when I'm writing code.
/**
* @description Get element(s) by a query.
* An ex:
* find all paragraphs with the class "summary" in the article with ID "first"
* "article#first p.summary"
* @param {String} query
*/
getByQuery: function(query) {
return exampleFunction(query);
}
But I can't find a way for creating new lines in javascript summary/documentation.
Please look at this picture, you will understand what I mean;
I tried;
<br>
<br/>
@newline
\n
<para>
</para>
@example