Skip to content

Commit 369d2e8

Browse files
Make raw HTML more scary
1 parent 60f34e1 commit 369d2e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/learn/advanced.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ Sometimes, you may wish to embed an existing HTML string inside of PyHTML. You
8484
can do this using the `p.DangerousRawHtml` tag.
8585

8686
```py
87-
>>> raw = p.DangerousRawHtml("<p>Wowee!</p>")
87+
>>> raw = p.DangerousRawHtml("<p>Scary!</p>")
8888
>>> print(str(raw))
89-
<p>Wowee!</p>
89+
<p>Scary!</p>
9090

9191
```
9292

0 commit comments

Comments
 (0)