File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ def print_statements(
368
368
else :
369
369
holds_tag = ''
370
370
html_parts .append (f'<div class="block { holds_tag } ">' )
371
- html_parts .append (f"<h2>Type: { struct_stmt .type } </h2>" )
371
+ html_parts .append (f"<h2>{ struct_stmt .type } </h2>" )
372
372
html_parts .append (f'<p><span class="label ">Statement:</span> { struct_stmt .text } </p>' )
373
373
if struct_stmt .formalization is None :
374
374
html_parts .append ("UNFORMALIZED" )
@@ -392,7 +392,7 @@ def print_statements(
392
392
if not only_formalized :
393
393
for unf_stmt in statements .unformalizable_statements or []:
394
394
html_parts .append ('<div class="block not-hold">' )
395
- html_parts .append (f"<h2>Type: { unf_stmt .type } </h2>" )
395
+ html_parts .append (f"<h2>{ unf_stmt .type } </h2>" )
396
396
html_parts .append (f'<p><span class="label">Statement:</span> { unf_stmt .text } </p>' )
397
397
# html_parts.append('<p><span class="label">Formalization:</span> UNFORMALIZABLE</p>')
398
398
html_parts .append ("</div>" )
You can’t perform that action at this time.
0 commit comments