Spaces:
Running
Running
log md
Browse files
app.py
CHANGED
|
@@ -95,6 +95,7 @@ if sentence:
|
|
| 95 |
cells = line.replace('_', '\\_').replace('|', '|').split('\t')
|
| 96 |
table_md += "| " + " | ".join(cells) + " |\n"
|
| 97 |
table_md += "</div>" # Close the RTL div
|
|
|
|
| 98 |
|
| 99 |
# Display the table using a single markdown call
|
| 100 |
st.markdown(table_md, unsafe_allow_html=True)
|
|
|
|
| 95 |
cells = line.replace('_', '\\_').replace('|', '|').split('\t')
|
| 96 |
table_md += "| " + " | ".join(cells) + " |\n"
|
| 97 |
table_md += "</div>" # Close the RTL div
|
| 98 |
+
print(table_md)
|
| 99 |
|
| 100 |
# Display the table using a single markdown call
|
| 101 |
st.markdown(table_md, unsafe_allow_html=True)
|