Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. FileOutputStream outStream = new FileOutputStream("readme.md");
  2. MarkdownDocument doc = new MarkdownDocument(outStream);
  3. doc.appendHeader1("Welcome", HeaderStyle.UNDERLINE);
  4. doc.appendParagraph("A paragraph...");
  5. doc.flush();
  6.  
  7. Welcome
  8. =======
  9.  
  10. A paragraph...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement