Last active
October 5, 2015 19:01
-
-
Save jeshan/bd59b38959cf2acc2b23 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
// 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