File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
repo-scripts/api-documenter/src/documenters Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -975,13 +975,14 @@ page_type: reference
975
975
// Header for each group of functions grouped by first param.
976
976
// Doesn't make sense if there's only one group.
977
977
const headerText = paramKey ? `function(${ paramKey } ...)` : 'function()' ;
978
- const formattedHeaderText = `**${ headerText } **` ;
979
978
if ( sortedFunctionsFirstParamKeys . length > 1 ) {
980
979
finalFunctionsTable . addRow (
981
980
new DocTableRow ( { configuration } , [
982
981
new DocTableCell ( { configuration } , [
983
982
new DocParagraph ( { configuration } , [
984
- new DocPlainText ( { configuration, text : formattedHeaderText } )
983
+ new DocEmphasisSpan ( { configuration, bold : true } , [
984
+ new DocPlainText ( { configuration, text : headerText } )
985
+ ] )
985
986
] )
986
987
] )
987
988
] )
You can’t perform that action at this time.
0 commit comments