Created
October 5, 2015 18:29
-
-
Save jeshan/00fab377d81f93bdcc61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// keep the reference which will allow us to walk through the structure | |
Html html = html(); | |
// creating a meta tag and navigating down the tree | |
html | |
.head() | |
.meta("charset", "UTF-8"); | |
/* | |
<html> | |
<head> | |
<meta name="charset" content="UTF-8" /> | |
</head> | |
</html> | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment