mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	docs: Capitalize Markdown consistently.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
		
				
					committed by
					
						
						Tim Abbott
					
				
			
			
				
	
			
			
			
						parent
						
							60a25b2721
						
					
				
				
					commit
					768f9f93cd
				
			@@ -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')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user