We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fe7817 commit 8ddeefcCopy full SHA for 8ddeefc
interpreter/terminal_interface/utils/streaming_markdown.py
@@ -23,7 +23,7 @@ def detect_complete_block(markdown_text):
23
"""
24
try:
25
# Enable non-default features to match Rich's parser configuration
26
- md = MarkdownIt().enable("strikethrough").enable("table")
+ md = MarkdownIt().enable("strikethrough").enable("table") # TODO: move to file-level instead of defining in each call?
27
md_tokens = md.parse(markdown_text)
28
29
lines = markdown_text.split('\n')
0 commit comments