You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Call this method to return a string that contains one character from each of * the sets in the deck in a random order * * @param {Array} deck this is an array of the sets of characters * @returns randomized string with one character from each specified set * * @example * var prefix = dealFromDeck([uppercaseSet, lowercaseSet, numberSet, specialSet]) */
I am getting this html. Note there was a lot of extra white space removed:
<h4class="name" id=".dealFromDeck"><spanclass="type-signature">(static) </span>dealFromDeck<spanclass="signature">(deck)</span><spanclass="type-signature"></span></h4><divclass="description">
Call this method to return a string that contains one character from each of
the sets in the deck in a random order
</div><h5>Parameters:</h5><tableclass="params"><thead><tr><th>Name</th><th>Type</th><thclass="last">Description</th></tr></thead><tbody><tr><tdclass="name"><code>deck</code></td><tdclass="type"><spanclass="param-type">Array</span></td><tdclass="description last">this is an array of the sets of characters</td></tr></tbody></table><dlclass="details"><dtclass="tag-source">Source:</dt><ddclass="tag-source"><ulclass="dummy"><li><ahref="scripts_common_random.js.html">scripts/common/random.js</a>, <ahref="scripts_common_random.js.html#line104">line 104</a></li></ul></dd></dl><h5>Returns:</h5><divclass="param-desc">
randomized string with one character from each specified set
</div><h5>Example</h5><preclass="prettyprint"></pre>
As you can see, the example is completely excluded in the <pre> tag.
The text was updated successfully, but these errors were encountered:
Hi @Glenn-Sharecare, thank you to raise this. The extension use jsdoc to generate html. If there is an issue with the rendering, I will suggest you to check first if the issue occurs with jsdoc itself. Maybe jsdoc has fixed in more recent version. If it's the case so I might have to upgrade the version.
Using this example:
I am getting this html. Note there was a lot of extra white space removed:
As you can see, the example is completely excluded in the <pre> tag.
The text was updated successfully, but these errors were encountered: