Skip to content

Instantly share code, notes, and snippets.

@jeshan
Last active October 5, 2015 19:01
Show Gist options
  • Save jeshan/bd59b38959cf2acc2b23 to your computer and use it in GitHub Desktop.
Save jeshan/bd59b38959cf2acc2b23 to your computer and use it in GitHub Desktop.
// Creating the document, with some headings and a paragraph
html
.body()
.heading(Heading.Level.ONE, "Hello h1")
.heading(Heading.Level.TWO, "level 2")
.paragraph("Some text in a paragraph goes here");
/*
<html>
<body>
<h1>Hello h1</h1>
<h2>level 2</h2>
<p>Some text in a paragraph goes here</p>
</body>
</html>
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment