wadmiraal/rtfm

View on GitHub
lib/html/rtfm-code-html.js

Summary

Maintainability
A
0 mins
Test Coverage

var code = require( '../rtfm-code' );

var codeHtml = code.extend({
    
    output: function( string ) {
        return '<code>' + string + '</code>';
    }

});

module.exports = codeHtml;