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
The standard jsdoc spec defnies support for monospace and plain text link formatting which is currently missing from jsdoc-to-markdown. (See jsdoc {@link} page.)
To match the jsdoc links, let's add {@linkcode} (which are rendered in monospace) and {@linkplain} (which are rendered in plain text) tags as well as 'clever links' and 'monospace links' options. When 'clever links' is true, then links are rendered in monospace unless the link target is a URL (e.g., links to functions, modules, classes, etc. are rendered in monospace). When 'monospace links' is true, then {@link} tags are rendered in monospace. The 'monospace links' options is ignored if 'clever links' is true.
Support for setting the options from the command line is proposed in jsdoc-to-markdown#301.
The text was updated successfully, but these errors were encountered:
The standard jsdoc spec defnies support for monospace and plain text link formatting which is currently missing from jsdoc-to-markdown. (See jsdoc
{@link}
page.)To match the jsdoc links, let's add
{@linkcode}
(which are rendered in monospace) and{@linkplain}
(which are rendered in plain text) tags as well as 'clever links' and 'monospace links' options. When 'clever links' is true, then links are rendered in monospace unless the link target is a URL (e.g., links to functions, modules, classes, etc. are rendered in monospace). When 'monospace links' is true, then{@link}
tags are rendered in monospace. The 'monospace links' options is ignored if 'clever links' is true.Support for setting the options from the command line is proposed in jsdoc-to-markdown#301.
The text was updated successfully, but these errors were encountered: