From 75d9bec432d02678ce6d2c06d12c72510a9b4d44 Mon Sep 17 00:00:00 2001 From: Alexander Droste Date: Fri, 27 Jul 2018 00:01:01 +0200 Subject: [PATCH] markdown_ast incl. kind in heading (for each node) --- src/output/markdown_ast.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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))