Skip to content

foundweekends/knockoff

 
 

Repository files navigation

Knockoff - Markdown in Scala

scaladoc Maven Central

This is a simple Markdown to object model to XHTML system.

import knockoff.DefaultDiscounter._

toXHTML(knockoff("""# My Markdown Content """))

You can use the blocks returned from the knockoff method to do useful things, like fetch the header:

val blocks = knockoff("""# My markdown""")
blocks.find( _.isInstanceOf[Header] ).map( toText ).getOrElse( "No header" )

Languages

  • Scala 56.6%
  • HTML 43.4%