Minor README Updates

This commit is contained in:
2025-09-06 17:26:47 -04:00
parent dc96e8570c
commit af98950265

View File

@@ -59,19 +59,16 @@ $(document.body).app($d
.s("color", "black") .s("color", "black")
.t("The quick brown fox jumped over the lazy, sleeping dog.") .t("The quick brown fox jumped over the lazy, sleeping dog.")
); );
``` ```
renders (with added spaces) as renders (with added spaces) as
``` ```
...
<body> <body>
<p style="background-color: yellow; color: black;"> <p style="background-color: yellow; color: black;">
The quick brown fox jumped over the lazy, sleeping dog. The quick brown fox jumped over the lazy, sleeping dog.
</p> </p>
</body> </body>
``` ```
### Create a List ### Create a List
@@ -95,7 +92,6 @@ const $ul = $d
}); });
$(document.body).app($ul); $(document.body).app($ul);
``` ```
renders (with added spaces) as renders (with added spaces) as
@@ -108,7 +104,6 @@ renders (with added spaces) as
<li id="fluentDom-example-list-item3">List Item 3</li> <li id="fluentDom-example-list-item3">List Item 3</li>
</ul> </ul>
</body> </body>
``` ```
## License ## License
@@ -136,5 +131,4 @@ License, Version 2, as published by Sam Hocevar.
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO. 0. You just DO WHAT THE FUCK YOU WANT TO.
``` ```