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
JSdoc with traditional HTML code formatting (<pre><code>...</code></pre>) seems to render incorrectly, coloring the code's text as if it's inline text rather than ensuring a solid background for the entire <pre> block .
This can be seen using, for example, the following jsdoc comment:
/** * This symbol can be used to create models with missing * "required" fields. Note that this value is inherited, * and so can be referenced from your own model's name * rather than using Model.ALLOW_INCOMPLETE. * * E.g. * * <pre><code> * class Something extends Model { * // ... * } * * Something.create(undefined, Something.ALLOW_INCOMPLETE); * </code></pre> */staticALLOW_INCOMPLETE=Symbol();
This yields:
The text was updated successfully, but these errors were encountered:
JSdoc with traditional HTML code formatting (
<pre><code>...</code></pre>
) seems to render incorrectly, coloring the code's text as if it's inline text rather than ensuring a solid background for the entire<pre>
block .This can be seen using, for example, the following jsdoc comment:
This yields:
The text was updated successfully, but these errors were encountered: