13 lines
183 B
JavaScript
13 lines
183 B
JavaScript
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
const json2md = require( 'json2md' );
|
||
|
|
||
|
json2md.converters.html = function ( input ) {
|
||
|
return input;
|
||
|
};
|
||
|
|
||
|
module.exports = { json2md };
|