docs: Capitalize Markdown consistently.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-08-10 16:47:49 -07:00
committed by Tim Abbott
parent 60a25b2721
commit 768f9f93cd
76 changed files with 200 additions and 199 deletions

View File

@@ -12,7 +12,7 @@ class Command(ZulipBaseCommand):
Useful to send a notice to all users of a realm or server.
The From and Subject headers can be provided in the body of the markdown
The From and Subject headers can be provided in the body of the Markdown
document used to generate the email, or on the command line."""
def add_arguments(self, parser: ArgumentParser) -> None:
@@ -22,13 +22,13 @@ class Command(ZulipBaseCommand):
dest='markdown_template_path',
required=True,
type=str,
help='Path to a markdown-format body for the email.')
help='Path to a Markdown-format body for the email.')
parser.add_argument('--subject',
type=str,
help='Subject for the email. It can be declared in markdown file in headers')
help='Subject for the email. It can be declared in Markdown file in headers')
parser.add_argument('--from-name',
type=str,
help='From line for the email. It can be declared in markdown file in headers')
help='From line for the email. It can be declared in Markdown file in headers')
parser.add_argument('--reply-to',
type=str,
help='Optional reply-to line for the email')