commonmark-test-suite
v0.1.0
Published
CommonMark Test Suite.
Readme
commonmark-test-suite
CommonMark Test Suite.
CommonMark Spec data in JavaScript.
Install
yarn add commonmark-test-suiteUsage
Latest version
import commonmarkTestSuite from 'commonmark-test-suite'
console.log(commonmarkTestSuite.latest)
// =>
// {
// version: '0.31.2',
// date: '2024-01-28',
// testCases: [
// {
// markdown: '\tfoo\tbaz\t\tbim\n',
// html: '<pre><code>foo\tbaz\t\tbim\n</code></pre>\n',
// example: 1,
// start_line: 355,
// end_line: 360,
// section: 'Tabs'
// },
// // ...,
// ]
// }Legacy versions (0.13 ~ latest)
import commonmarkTestSuite from 'commonmark-test-suite'
console.log(commonmarkTestSuite['0.30'])
// =>
// {
// version: '0.30',
// date: '2021-06-19',
// testCases: [
// {
// markdown: '\tfoo\tbaz\t\tbim\n',
// html: '<pre><code>foo\tbaz\t\tbim\n</code></pre>\n',
// example: 1,
// start_line: 356,
// end_line: 361,
// section: 'Tabs'
// },
// // ...,
// ]
// }