From b3e286a9524fad9f173478fec0292de0ab313f15 Mon Sep 17 00:00:00 2001 From: Lee Hanken Date: Mon, 2 May 2022 12:06:44 +0100 Subject: [PATCH] do not make identifier main title in apple dev doc markdown --- url_to_markdown_apple_dev_docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/url_to_markdown_apple_dev_docs.js b/url_to_markdown_apple_dev_docs.js index 4ee767a..de796b3 100755 --- a/url_to_markdown_apple_dev_docs.js +++ b/url_to_markdown_apple_dev_docs.js @@ -59,7 +59,7 @@ module.exports = { section.declarations.forEach((declaration, i) => { if (typeof declaration.tokens !== undefined) { - token_text = "# "; + token_text = ""; declaration.tokens.forEach((token, i) => { token_text += token.text; });