fix(core): update

This commit is contained in:
2019-05-05 17:41:39 +02:00
parent af04a3d04b
commit 173536be39
3 changed files with 847 additions and 228 deletions

View File

@ -3,7 +3,7 @@ import * as smartmarkdown from '../ts/index';
tap.test('first test', async () => {
const mdString = smartmarkdown.markdownToHtml('# Hi!');
expect(mdString).to.equal('<h1 id="hi-">Hi!</h1>\n');
expect(mdString).to.equal('<h1 id="hi">Hi!</h1>\n');
});
tap.start();