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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -80,6 +80,7 @@ st.markdown(
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 {example['content']}")
 
84
  else:
85
  st.code(example["content"], language=chosen_language)
 
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)