delete the test file
This commit is contained in:
32
test.py
32
test.py
@@ -1,32 +0,0 @@
|
||||
from jinja2 import Template
|
||||
|
||||
text = """
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8" /> <!--It is necessary to use the UTF-8 encoding with plotly graphics to get e.g. negative signs to render correctly -->
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
{{ text1 }}
|
||||
{{ text2 }}
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
"""
|
||||
|
||||
tmpl = Template(text)
|
||||
print(
|
||||
tmpl.render(
|
||||
text1 = "TEST"
|
||||
)
|
||||
)
|
||||
Reference in New Issue
Block a user