@@ -49,7 +49,7 @@ def escape_markdown(content: str) -> str:
4949 return reparse
5050
5151
52- def mbold (content : str , escape : bool = False ) -> str :
52+ def mbold (content : str , escape : bool = True ) -> str :
5353 """
5454 Returns a Markdown-formatted bold string.
5555
@@ -59,7 +59,7 @@ def mbold(content: str, escape: bool=False) -> str:
5959 return '*{}*' .format (escape_markdown (content ) if escape else content )
6060
6161
62- def hbold (content : str , escape : bool = False ) -> str :
62+ def hbold (content : str , escape : bool = True ) -> str :
6363 """
6464 Returns an HTML-formatted bold string.
6565
@@ -69,7 +69,7 @@ def hbold(content: str, escape: bool=False) -> str:
6969 return '<b>{}</b>' .format (escape_html (content ) if escape else content )
7070
7171
72- def mitalic (content : str , escape : bool = False ) -> str :
72+ def mitalic (content : str , escape : bool = True ) -> str :
7373 """
7474 Returns a Markdown-formatted italic string.
7575
@@ -79,7 +79,7 @@ def mitalic(content: str, escape: bool=False) -> str:
7979 return '_{}_\r ' .format (escape_markdown (content ) if escape else content )
8080
8181
82- def hitalic (content : str , escape : bool = False ) -> str :
82+ def hitalic (content : str , escape : bool = True ) -> str :
8383 """
8484 Returns an HTML-formatted italic string.
8585
@@ -89,7 +89,7 @@ def hitalic(content: str, escape: bool=False) -> str:
8989 return '<i>{}</i>' .format (escape_html (content ) if escape else content )
9090
9191
92- def munderline (content : str , escape : bool = False ) -> str :
92+ def munderline (content : str , escape : bool = True ) -> str :
9393 """
9494 Returns a Markdown-formatted underline string.
9595
@@ -99,7 +99,7 @@ def munderline(content: str, escape: bool=False) -> str:
9999 return '__{}__' .format (escape_markdown (content ) if escape else content )
100100
101101
102- def hunderline (content : str , escape : bool = False ) -> str :
102+ def hunderline (content : str , escape : bool = True ) -> str :
103103 """
104104 Returns an HTML-formatted underline string.
105105
@@ -109,7 +109,7 @@ def hunderline(content: str, escape: bool=False) -> str:
109109 return '<u>{}</u>' .format (escape_html (content ) if escape else content )
110110
111111
112- def mstrikethrough (content : str , escape : bool = False ) -> str :
112+ def mstrikethrough (content : str , escape : bool = True ) -> str :
113113 """
114114 Returns a Markdown-formatted strikethrough string.
115115
@@ -119,7 +119,7 @@ def mstrikethrough(content: str, escape: bool=False) -> str:
119119 return '~{}~' .format (escape_markdown (content ) if escape else content )
120120
121121
122- def hstrikethrough (content : str , escape : bool = False ) -> str :
122+ def hstrikethrough (content : str , escape : bool = True ) -> str :
123123 """
124124 Returns an HTML-formatted strikethrough string.
125125
@@ -129,7 +129,7 @@ def hstrikethrough(content: str, escape: bool=False) -> str:
129129 return '<s>{}</s>' .format (escape_html (content ) if escape else content )
130130
131131
132- def mspoiler (content : str , escape : bool = False ) -> str :
132+ def mspoiler (content : str , escape : bool = True ) -> str :
133133 """
134134 Returns a Markdown-formatted spoiler string.
135135
@@ -139,7 +139,7 @@ def mspoiler(content: str, escape: bool=False) -> str:
139139 return '||{}||' .format (escape_markdown (content ) if escape else content )
140140
141141
142- def hspoiler (content : str , escape : bool = False ) -> str :
142+ def hspoiler (content : str , escape : bool = True ) -> str :
143143 """
144144 Returns an HTML-formatted spoiler string.
145145
@@ -149,7 +149,7 @@ def hspoiler(content: str, escape: bool=False) -> str:
149149 return '<tg-spoiler>{}</tg-spoiler>' .format (escape_html (content ) if escape else content )
150150
151151
152- def mlink (content : str , url : str , escape : bool = False ) -> str :
152+ def mlink (content : str , url : str , escape : bool = True ) -> str :
153153 """
154154 Returns a Markdown-formatted link string.
155155
@@ -160,7 +160,7 @@ def mlink(content: str, url: str, escape: bool=False) -> str:
160160 return '[{}]({})' .format (escape_markdown (content ), escape_markdown (url ) if escape else content )
161161
162162
163- def hlink (content : str , url : str , escape : bool = False ) -> str :
163+ def hlink (content : str , url : str , escape : bool = True ) -> str :
164164 """
165165 Returns an HTML-formatted link string.
166166
@@ -171,7 +171,7 @@ def hlink(content: str, url: str, escape: bool=False) -> str:
171171 return '<a href="{}">{}</a>' .format (escape_html (url ), escape_html (content ) if escape else content )
172172
173173
174- def mcode (content : str , language : str = "" , escape : bool = False ) -> str :
174+ def mcode (content : str , language : str = "" , escape : bool = True ) -> str :
175175 """
176176 Returns a Markdown-formatted code string.
177177
@@ -181,7 +181,7 @@ def mcode(content: str, language: str="", escape: bool=False) -> str:
181181 return '```{}\n {}```' .format (language , escape_markdown (content ) if escape else content )
182182
183183
184- def hcode (content : str , escape : bool = False ) -> str :
184+ def hcode (content : str , escape : bool = True ) -> str :
185185 """
186186 Returns an HTML-formatted code string.
187187
@@ -191,7 +191,7 @@ def hcode(content: str, escape: bool=False) -> str:
191191 return '<code>{}</code>' .format (escape_html (content ) if escape else content )
192192
193193
194- def hpre (content : str , escape : bool = False , language : str = "" ) -> str :
194+ def hpre (content : str , escape : bool = True , language : str = "" ) -> str :
195195 """
196196 Returns an HTML-formatted preformatted string.
197197
0 commit comments