fix(core): update

This commit is contained in:
2018-09-23 00:21:31 +02:00
parent 540d617206
commit a372e507f4
6 changed files with 25 additions and 12 deletions

View File

@ -1,3 +1,3 @@
import * as plugins from './smartmarkdown.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export const markdownToHtml = (mdString: string): string => plugins.marked(mdString);

View File

@ -1,2 +1,3 @@
const removeme = {};
export { removeme };
import marked = require('marked');
export { marked };