UNPKG

dgeni-packages

Version:

A collection of dgeni packages for generating documentation from source code

9 lines 241 B
/** * Use the whole tag as the value rather than using a tag property, such as `description` * @param {Tag} tag The tag to process */ module.exports = function wholeTagTransform() { return (doc, tag, value) => { return tag; }; };