Skip to content

mixmark-io/turndown-attendant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

8 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

turndown-attendant

Test runner for HTML to Markdown conversions with Turndown

Usage

Specify you input HTML and your expected output in an HTML file:

<!-- test.html -->
<div class="case", data-name="headings">
  <div class="input">
    <h1>Hello world</h1>
  </div>
  <pre class="expected"># Hello world</pre>
</div>

Create a new attendant with the TurndownService class, the HTML file, and optionally a beforeEach function which gets called with the new TurndownService instance. (This is useful for applying plugins.) Then call run to run the test cases.

var TurndownService = require('turndown')
var Attendant = require('turndown-attendant')

var attendant = new Attendant({
  Turndown: TurndownService,
  file: '/path/to/test.html',
  beforeEach: function (turndownService) {
    turndownService.use(โ€ฆ)
  }
})

attendant.run()

To run tests that do not require HTML or a DOM, access test on the attendant instance:

attendant.test('test something else', function (t) { โ€ฆ })

About

๐Ÿƒ Test runner for HTML to Markdown conversions with Turndown

Resources

License

Stars

Watchers

Forks

Packages

No packages published