docs: Capitalize “Markdown” consistently.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2021-04-25 14:11:21 -07:00
committed by Tim Abbott
parent 178736c8eb
commit e3f2ffa681
9 changed files with 10 additions and 10 deletions

View File

@@ -211,7 +211,7 @@ export function apply_markdown(message) {
return quote;
},
};
// Our python-markdown processor appends two \n\n to input
// Our Python-Markdown processor appends two \n\n to input
message.content = marked(message.raw_content + "\n\n", options).trim();
message.is_me_message = is_status_message(message.raw_content);
}