Skip to content

Commit 1549e38

Browse files
committed
Add strong tags
1 parent 5889d76 commit 1549e38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

repo-scripts/api-documenter/src/documenters/MarkdownDocumenter.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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
])

0 commit comments

Comments
 (0)