#** This func template is used for rendering HTML in parameter table cells *# #* Workaround for markdownCellFormat() not allowing HTML (specifically lists) to be rendered in attribute table cells. TODO: Once https://github.com/bazelbuild/bazel/pull/14230 is merged, remove this macro and replace with call to util.markdownCellFormatWithHtml($attribute.docString, true) *# #macro( markdownCellFormatNoEscapeHtml $docString )#* *##if ($docString.contains("
${util.funcSummary($funcInfo)}${funcInfo.docString} #if (!$funcInfo.getParameterList().isEmpty()) #[[###]]# **Parameters** | Name | Description | Default Value | | :------------- | :------------- | :------------- | #foreach ($param in $funcInfo.getParameterList()) | $param.name | #if(!$param.docString.isEmpty()) #markdownCellFormatNoEscapeHtml( $param.docString ) #else
-
#end | #if(!$param.getDefaultValue().isEmpty())$param.getDefaultValue()
#else none #end|
#end
#end
#if (!$funcInfo.getReturn().docString.isEmpty())
#[[###]]# **Returns**
${funcInfo.getReturn().docString}
#end
#if (!$funcInfo.getDeprecated().docString.isEmpty())
#[[###]]# **Deprecated**
${funcInfo.getDeprecated().docString}
#end