File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
repo-scripts/api-documenter/src/documenters Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -975,12 +975,13 @@ page_type: reference
975975 // Header for each group of functions grouped by first param.
976976 // Doesn't make sense if there's only one group.
977977 const headerText = paramKey ? `function(${ paramKey } ...)` : 'function()' ;
978+ const formattedHeaderText = `<strong>${ headerText } </strong>` ;
978979 if ( sortedFunctionsFirstParamKeys . length > 1 ) {
979980 finalFunctionsTable . addRow (
980981 new DocTableRow ( { configuration } , [
981982 new DocTableCell ( { configuration } , [
982983 new DocParagraph ( { configuration } , [
983- new DocPlainText ( { configuration, text : headerText } )
984+ new DocPlainText ( { configuration, text : formattedHeaderText } )
984985 ] )
985986 ] )
986987 ] )
You can’t perform that action at this time.
0 commit comments