UNPKG

typedoc-plugin-markdown

Version:

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

20 lines (19 loc) 609 B
/** * General utility pure functions. * * @module */ export * from './camel-to-title-case.js'; export * from './encode-angle-brackets.js'; export * from './escape-chars.js'; export * from './format-markdown.js'; export * from './format-table-cell.js'; export * from './get-path-without-ext.js'; export * from './is-quoted.js'; export * from './remove-first-scoped-directory.js'; export * from './remove-line-breaks.js'; export * from './replace-file-name.js'; export * from './sanitize-comments.js'; export * from './slugify.js'; export * from './to-pascal-case.js'; export * from './un-escape-chars.js';