wadmiraal/rtfm

View on GitHub
lib/md/rtfm-strikethrough-md.js

Summary

Maintainability
A
0 mins
Test Coverage

var strikeThroughHtml = require( '../html/rtfm-strikethrough-html' );

// Markdown does not have a strike-through implementation. It can,
// however, use normal HTML. Extend the HTML strike-through plugin.
var strikeThroughMarkdown = strikeThroughHtml.extend({});

module.exports = strikeThroughMarkdown;