Skip to content

Commit

Permalink
completed manual example implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
raner committed Sep 16, 2024
1 parent b30d3a5 commit 70cb28a
Show file tree
Hide file tree
Showing 14 changed files with 4,185 additions and 46 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,30 +63,32 @@ public HtmlContent example(HtmlContentHead html)
$2 -> $2.
img().src("image2.jpg").alt("Another image").$()
)
// .
// $("Hello").em().$($3 -> $3.$("emphasized text")).$("more text").
// img().src("image3.png").alt("Third image").$()
.
$("Hello").em().$($3 -> $3.$("emphasized text")).$("more text").
img().src("image3.png").alt("Third image").$()
)
.
ul().$
(
$4 -> $4.
li().$
(
$5 -> $5.
$("First Item")
)
.
li().$
(
$6 -> $6.
$("Second Item")
)
)
.
noscript().$
(
$7 -> $7.
b().$($8 -> $8.$("No script installed"))
)
// .
// ul().$
// (
// $4 -> $4.
// li().$
// (
// $5 -> $5.
// $("First Item")
// ).
// li().$
// (
// $6 -> $6.
// $("Second Item")
// )
// ).
// noscript().$
// (
// $7 -> $7.
// b().$($8 -> $8.$("No script installed"))
// )
);
}

Expand Down
Loading

0 comments on commit 70cb28a

Please sign in to comment.