yetessam commited on
Commit
40f2419
·
verified ·
1 Parent(s): 5d258d5

Update Gradio_UI.py

Browse files
Files changed (1) hide show
  1. Gradio_UI.py +3 -0
Gradio_UI.py CHANGED
@@ -14,6 +14,7 @@
14
  # See the License for the specific language governing permissions and
15
  # limitations under the License.
16
  import mimetypes
 
17
  import os
18
  import re
19
  import shutil
@@ -60,6 +61,8 @@ def get_examples():
60
  example_content = ""
61
  with open(file_path, "r", encoding="utf-8", errors="ignore") as f:
62
  example_content = f.read()
 
 
63
  examples.append(example_content) # Read the content and append it to the list
64
 
65
 
 
14
  # See the License for the specific language governing permissions and
15
  # limitations under the License.
16
  import mimetypes
17
+ import html
18
  import os
19
  import re
20
  import shutil
 
61
  example_content = ""
62
  with open(file_path, "r", encoding="utf-8", errors="ignore") as f:
63
  example_content = f.read()
64
+ # Escape special characters for HTML contexts
65
+ example_content = html.escape(example_content)
66
  examples.append(example_content) # Read the content and append it to the list
67
 
68