showdown/test/functional/makehtml/testsuite.commonmark.js
Estevao Soares dos Santos d3ebff7ef0 fix(links): a number of issues with links subparser
This is a major refactor of the links subparser, previously known as anchors subparser.

Closes #355, #534

BREAKING CHANGE: `excludeTrailingPunctuationFromURLs` option was removed. This is now the default behavior
2018-09-25 04:04:59 +01:00

26 lines
698 B
JavaScript

/**
* Created by Estevao on 08-06-2015.
*/
// jshint ignore: start
/*
var bootstrap = require('./makehtml.bootstrap.js'),
converter = new bootstrap.showdown.Converter(),
assertion = bootstrap.assertion,
testsuite = bootstrap.getJsonTestSuite('test/functional/makehtml/cases/commonmark.testsuite.json');
describe('makeHtml() commonmark testsuite', function () {
'use strict';
for (var section in testsuite) {
if (testsuite.hasOwnProperty(section)) {
describe(section, function () {
for (var i = 0; i < testsuite[section].length; ++i) {
it(testsuite[section][i].name, assertion(testsuite[section][i], converter));
}
});
}
}
});
*/