This is a plugin for previewing Pamflet project documentation. Install it as a global plugin built from source to use it with any project that has a Pamflet docs directory.
~/.sbt/plugins/project/build.scala
import sbt._
object PluginDef extends Build {
lazy val root = Project("plugins", file(".")) dependsOn(
pamflet)
lazy val pamflet = uri("git://github.com/n8han/pamflet-plugin#0.3.0")
}