Skip to content

Commit bbcb101

Browse files
committed
Formatting updates
1 parent d3ca526 commit bbcb101

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

mdit_py_plugins/amsmath/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,4 @@ def amsmath_block(state: StateBlock, startLine: int, endLine: int, silent: bool)
115115

116116
def render_amsmath_block(self, tokens, idx, options, env):
117117
token = tokens[idx]
118-
return (
119-
'<div class="math amsmath">\n'
120-
f"{escapeHtml(token.content)}\n</div>\n"
121-
)
118+
return f'<div class="math amsmath">\n{escapeHtml(token.content)}\n</div>\n'

0 commit comments

Comments
 (0)