fix: use raw string for HTML template to preserve JS backslashes

Python was interpreting \' as ' in the onclick handlers, breaking JS.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-09 11:36:48 +00:00
parent 128aad405c
commit 5c9b7c74e0
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
"""Inline frontend HTML for ClipForge."""
HTML = """<!DOCTYPE html>
HTML = r"""<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">