ends.pamflet-knockoff_2.13.0.12.0.source-code.imgs.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pamflet-knockoff_2.13 Show documentation
Show all versions of pamflet-knockoff_2.13 Show documentation
Extensions to the Knockoff Markdown parser
The newest version!
package pamflet
import scala.xml.Node
import knockoff._
// see http://www.w3.org/html/wg/drafts/html/master/syntax.html#void-elements
trait Html5Imgs extends Discounter { self: XHTMLWriter =>
override def imageLinkToXHTML : ( collection.Seq[Span], String, Option[String] ) => Node = {
( spans, url, title ) =>
}
}