UNPKG

typedoc-plugin-markdown

Version:

A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.

9 lines (8 loc) 194 B
/** * The link element * @param label The text to display for the link * @param url The url to link to */ export function link(label, url) { return `[${label.trim()}](${url || ''})`; }