mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
23 lines
525 B
JavaScript
23 lines
525 B
JavaScript
/**
|
|
* Created by Estevao on 15-01-2015.
|
|
*/
|
|
//let showdown = require('../../.build/showdown.js') || require('showdown');
|
|
chai.should();
|
|
|
|
describe('showdown.Converter', function () {
|
|
'use strict';
|
|
|
|
|
|
describe('makeMarkdown()', function () {
|
|
let converter = new showdown.Converter();
|
|
|
|
it('should parse a simple html string', function () {
|
|
let html = '<a href="/somefoo.html">a link</a>\n';
|
|
let md = '[a link](</somefoo.html>)';
|
|
|
|
converter.makeMarkdown(html).should.equal(md);
|
|
});
|
|
|
|
});
|
|
});
|