diff --git a/src/output/markdown_ast.js b/src/output/markdown_ast.js index 8760a9634..244bc142d 100644 --- a/src/output/markdown_ast.js +++ b/src/output/markdown_ast.js @@ -317,7 +317,16 @@ function buildMarkdownAST( .filter(Boolean); } - return [u('heading', { depth }, [u('text', comment.name || '')])] + return [ + u( + 'heading', + { depth }, + (comment.kind + ? [u('emphasis', [u('text', comment.kind)]), u('text', ' ')] + : [] + ).concat([u('text', comment.name || '')]) + ) + ] .concat(githubLink(comment)) .concat(augmentsLink(comment)) .concat(seeLink(comment))