diff --git a/src/index.ts b/src/index.ts index 6b6617b..98276d7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,8 +5,9 @@ */ // Parser +export { parse } from './parser'; export * as parser from './parser'; // Output -export * as rst from './rst'; -export * as html from './html'; +export { quoteRST, toRST } from './rst'; +export { quoteHTML, toHTML } from './html';