grails.doc.macros.HiddenMacro.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grails-docs Show documentation
Show all versions of grails-docs Show documentation
Grails Web Application Framework
package grails.doc.macros
import org.radeox.macro.BaseMacro
import org.radeox.macro.parameter.MacroParameter
class HiddenMacro extends BaseMacro {
String getName() { "hidden" }
void execute(Writer out, MacroParameter params) {
out << '' << params.content << ''
}
}