Skip to content

Instantly share code, notes, and snippets.

@Allwin12
Created October 2, 2020 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Allwin12/fb13ae55231507c893d9b460f08ee7fc to your computer and use it in GitHub Desktop.
Save Allwin12/fb13ae55231507c893d9b460f08ee7fc to your computer and use it in GitHub Desktop.
from html import escape
html_string = '''
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<p>This is a sample string! </p>
</body>
</html>
'''
escaped_string = escape(html_string)
print(escaped_string)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment