Packages

package code

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait CodeCategory extends Product with Serializable

    Represents a category that can be assigned to a span inside a code block to facilitate syntax highlighting.

  2. trait CodeSpanParser extends AnyRef

    A collection of code span parsers that are intended to be applied together.

Value Members

  1. object CodeCategory extends Serializable
  2. object CodeSpanParser

    Companion with a range of convenient constructors for creating CodeSpanParsers instances, based on existing parser instances or simple specifications of start and end delimiters.

  3. object SyntaxHighlighting extends ExtensionBundle with Product with Serializable

    Extension that registers all code syntax highlighters provided out of the box.

    Extension that registers all code syntax highlighters provided out of the box.

    The extension can be added to a transformer like any other extension:

    val transformer = Transformer
      .from(Markdown)
      .to(HTML)
      .using(GitHubFlavor)
      .using(SyntaxHighlighting)
      .build
  4. object implicits

Ungrouped