com.krrrr38

halty

package halty

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Block extends Chunk

  2. case class BlockQuote(blocks: List[Block], http: Option[Http] = scala.None) extends Block with Product with Serializable

  3. sealed trait Chunk extends AnyRef

  4. case class DL(items: List[DLItem]) extends Block with Product with Serializable

  5. case class DLItem(definition: String, detail: Inline) extends Chunk with Product with Serializable

  6. trait DefaultInlineConverter[A] extends InlineConverter[A]

  7. trait Fetcher extends AnyRef

  8. trait Generator[A, B <: GeneratorConfig] extends AnyRef

  9. trait GeneratorConfig extends AnyRef

  10. trait HaltyParser extends RegexParsers

  11. case class Header(tag: HeaderTag, inline: Inline) extends Block with Product with Serializable

  12. sealed trait HeaderTag extends AnyRef

  13. sealed trait Http extends Chunk

  14. case class HttpAutoTitle(url: String) extends Http with Product with Serializable

  15. case class HttpRawTitle(url: String, title: String) extends Http with Product with Serializable

  16. case class Inline(text: String) extends Chunk with Product with Serializable

  17. trait InlineConverter[A] extends AnyRef

  18. case class LI(inline: Inline, nest: Option[ListTag]) extends Chunk with Product with Serializable

  19. sealed trait ListTag extends Block

  20. case class OL(level: Int, items: List[LI]) extends ListTag with Product with Serializable

  21. case class Paragraph(inlines: List[Inline]) extends Block with Product with Serializable

  22. case class Pre(blocks: List[Block]) extends Block with Product with Serializable

  23. case class SuperPre(content: String, lang: Option[String] = scala.None) extends Block with Product with Serializable

  24. case class Table(rows: List[TableRow]) extends Block with Product with Serializable

  25. case class TableData(inline: Inline, isEmphasis: Boolean = false) extends Chunk with Product with Serializable

  26. case class TableRow(cells: List[TableData]) extends TemporaryBlock with Product with Serializable

  27. sealed trait TemporaryBlock extends Block

  28. case class UL(level: Int, items: List[LI]) extends ListTag with Product with Serializable

Value Members

  1. object DefaultJsoupFetcher extends Fetcher

  2. object Empty extends Block with Product with Serializable

  3. object H3 extends HeaderTag with Product with Serializable

  4. object H4 extends HeaderTag with Product with Serializable

  5. object H5 extends HeaderTag with Product with Serializable

  6. object Halty extends HaltyParser

  7. package markdown

  8. package xhtml

Ungrouped