From 13f7f8580e65aa49b6554c020ad3f3387b8b0058 Mon Sep 17 00:00:00 2001 From: "Paul W." Date: Wed, 2 Oct 2024 23:01:12 -0400 Subject: [PATCH] Escape HTML --- odin-templating/README.md | 40 +++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/odin-templating/README.md b/odin-templating/README.md index d0b881f..7acf293 100644 --- a/odin-templating/README.md +++ b/odin-templating/README.md @@ -38,24 +38,24 @@ } ``` - - - HTML Title - - -
-
-

Hello, world!

-
Goodbye, world!
-
Yo, what's up!
-
- don't be eeeviiiilll - This link has a class called 'button' -
-
- green texture -
+<html> + <head> + <title>HTML Title</title> + </head> + <body> + <div class="container"> + <div class="article"> + <h1>Hello, world!</h1> + <h6>Goodbye, world!</h6> + <div aria-data="idk!">Yo, what's up!</div> + <div> + <a href="http://google.com">don't be eeeviiiilll</a> + <a class="button" href="">This link has a class called 'button'</a> + </div> + </div> + <img class="img" alt="green texture" src="background.png"> + <div class="hello" id="lol"></div> Random text -
- - \ No newline at end of file + </div> + </body> +</html> \ No newline at end of file