UNPKG

antsibull-docs

Version:

TypeScript library for processing Ansible documentation markup

16 lines (13 loc) 457 B
/* Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause) SPDX-FileCopyrightText: Ansible Project SPDX-License-Identifier: BSD-2-Clause */ // Parser export { parse } from './parser'; export * as dom from './dom'; // Output export { toAnsibleDocText } from './ansible-doc-text'; export { quoteHTML, toHTML } from './html'; export { quoteMD, toMD } from './md'; export { quoteRST, toRST } from './rst';