Files
openide/python/testData/refactoring/rename/renameVariableInTStringWithHTMLInjection_after.py
Daniil Kalinin 2647731608 PY-79967 Support HTML injections inside template strings
GitOrigin-RevId: 435d956e12f08c2a51c1f772cdbfa91901135e4b
2025-04-28 19:14:39 +00:00

7 lines
146 B
Python

username = "User"
greeting = t"""
<div>
<h2>Hi, {username}!</h2>
<p>This is a t-string with both HTML and Python interpolation.</p>
</div>
"""