Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mathics_django/web/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def format_output(evaluation, expr, html_tag_format=None):
# This part is similar to mathics.core.evaluation.format_output().
if html_tag_format == "text":
boxed = format_element(expr, evaluation, SymbolOutputForm)
result = boxed.boxes_to_text()
result = f'"{boxed.to_text()}"'

return safe_html_string(result)
elif html_tag_format == "xml":
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "Mathics3-Django"
description = "A Django-based frontend for Mathics3"
dependencies = [
"Django >= 3.1",
"Mathics3 >= 10.0",
"Mathics3 >= 10.0.1",
"Mathics3_Scanner >= 10.0",
"pygments", # For colorized Python tracebacks
"requests",
Expand Down
Loading