jsdoc-75lb
Version:
An API documentation generator for JavaScript.
22 lines (20 loc) • 611 B
JavaScript
/**
@overview Escape HTML tags in descriptions.
@module plugins/escapeHtml
@author Michael Mathews <micmath@gmail.com>
*/
;
exports.handlers = {
/**
Translate HTML tags in descriptions into safe entities.
Replaces <, & and newlines
*/
newDoclet: function(e) {
if (e.doclet.description) {
e.doclet.description = e.doclet.description
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/\r\n|\n|\r/g, '<br>');
}
}
};