Hello World
In the case of razem.io this is the first rendered html based on markdown.
There are a lot of static compilers out there and I used harp for a long time to render my homepage. However I was not satisfied with not being able to write clean plugins in a considerable time frame. Now that I am able to use scala and do it my way, I am confident to write more. Let us see if this turns out to be true.
Let us take a test drive
To test
- list
- table
- code
- links
List
Normal List
- Entry A
- Entry B
Ordered List
- One
- Two
- Three
- Four
Task List
- Done
- Yet to do
Table
Test Case | Results |
---|---|
list | ok |
table | ok |
code | ok |
link | ok |
Code
no highlight test
//let the rainbow explode
case class BlogEntry (name: String, fileName: String, date: DateTime)(implicit blogService: BlogService) {
val url: String = BlogEntry.genUrl(this)
def html: String = BlogService.blogEntryToMarkdown(this).getOrElse("")
}