loubnabnl HF staff commited on
Commit
232b43d
·
1 Parent(s): 48aa152

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -79,8 +79,9 @@ st.markdown(
79
 
80
  # display file content
81
  st.markdown("#### File content:")
82
- if not example["lexable"]:
83
- st.write(f"File can't be lexed so we remove syntax highlighting.\nContent:\n")
84
- st.text(example['content'])
85
- else:
86
  st.code(example["content"], language=chosen_language)
 
 
 
 
 
79
 
80
  # display file content
81
  st.markdown("#### File content:")
82
+ if example["lexable"]:
 
 
 
83
  st.code(example["content"], language=chosen_language)
84
+ else:
85
+ st.write(f"File can't be lexed so we remove syntax highlighting.\nContent:\n")
86
+ st.write(str(example['content']))
87
+