Skip to content

Commit

Permalink
update README reflecting latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomHashTags committed Sep 22, 2024
1 parent a6f4260 commit fa03889
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ Write HTML using Swift Macros.
let test:String = #html([
#body([
#div(
class: ["dark-mode", "row"],
draggable: .false,
hidden: .true,
inputmode: .email,
title: "Hey, you're pretty cool",
attributes: [
.class(["dark-mode", "row"]),
.draggable(.false),
.hidden(.true),
.inputmode(.email),
.title("Hey, you're pretty cool")
],
[
"Random text",
#div(),
Expand Down

0 comments on commit fa03889

Please sign in to comment.