mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
Most of the existing author tags are grossly out of date at this point. The definitive reference for who has contributed what is available at https://github.com/jsdoc3/jsdoc/graphs/contributors.
22 lines
436 B
JavaScript
22 lines
436 B
JavaScript
/**
|
|
* Strips the rails template tags from a js.erb file
|
|
*
|
|
* @module plugins/railsTemplate
|
|
*/
|
|
'use strict';
|
|
|
|
exports.handlers = {
|
|
/**
|
|
* Remove rails tags from the source input (e.g. <% foo bar %>)
|
|
*
|
|
* @param e
|
|
* @param e.filename
|
|
* @param e.source
|
|
*/
|
|
beforeParse: function(e) {
|
|
if (e.filename.match(/\.erb$/)) {
|
|
e.source = e.source.replace(/<%.*%>/g, '');
|
|
}
|
|
}
|
|
};
|