Skip to content

Instantly share code, notes, and snippets.

@jeshan
Created October 5, 2015 18:29
Show Gist options
  • Save jeshan/00fab377d81f93bdcc61 to your computer and use it in GitHub Desktop.
Save jeshan/00fab377d81f93bdcc61 to your computer and use it in GitHub Desktop.
// 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