mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
var walk = require('../lib/walk');
|
|
|
|
module.exports = function (comments) {
|
|
return walk(comments, function (comment) {
|
|
delete comment.context.file;
|
|
if (comment.context.github) {
|
|
comment.context.github = '[github]';
|
|
}
|
|
});
|
|
}
|