We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d922816 commit f6e9f73Copy full SHA for f6e9f73
repo-scripts/api-documenter/src/documenters/MarkdownDocumenter.ts
@@ -975,7 +975,7 @@ page_type: reference
975
// Header for each group of functions grouped by first param.
976
// Doesn't make sense if there's only one group.
977
const headerText = paramKey ? `function(${paramKey}...)` : 'function()';
978
- const formattedHeaderText = `<strong>${headerText}</strong>`;
+ const formattedHeaderText = `**${headerText}**`;
979
if (sortedFunctionsFirstParamKeys.length > 1) {
980
finalFunctionsTable.addRow(
981
new DocTableRow({ configuration }, [
0 commit comments