I have a simple method in API, that allows searching objects with JSONPath. As its syntax is pretty much unfamiliar to junior developers, i decided to provide some examples within JSDoc comment. Yet, here is the catch, - @ sign is treated as a start of new jsdoc-tag, and so description becomes corrupted.
Question: how to make NetBeans (or jsdoc in general) ignore @ signs inside of particular code chunk ? Preferably, within @example block.
So this code, would show unmodified within tooltip:
$..book[?(@.price<10)] // - filter all books cheaper than 10
Also, @example, <code>, <pre> - do not help.
Html entity @ is converted to @ in tooltip, but it looks unreadable in the code itself ($..book[?(@.price<10)]) and its only working in main jsdoc text ...
