MacroDocs configures a list of strings into a multiline description for the macro.
(docs ...string)
| 147 | |
| 148 | // MacroDocs configures a list of strings into a multiline description for the macro. |
| 149 | func MacroDocs(docs ...string) MacroOpt { |
| 150 | return parser.MacroDocs(docs...) |
| 151 | } |
| 152 | |
| 153 | // MacroExamples configures a list of examples, either as a string or common.MultilineString, |
| 154 | // into an example set to be provided with the macro Documentation() call. |