c

net.liftweb.markdown

LineTokenizer

class LineTokenizer extends Parsers

Chops the input into lines and turns those lines into line tokens. Also takes care of preprocessing link definitions and xml blocks.

Linear Supertypes
Parsers, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LineTokenizer
  2. Parsers
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LineTokenizer()

Type Members

  1. type Elem = String

    we munch whole lines (OM NOM NOM)

    we munch whole lines (OM NOM NOM)

    Definition Classes
    LineTokenizer → Parsers
  2. case class Error extends NoSuccess with Product with Serializable
    Definition Classes
    Parsers
  3. case class Failure extends NoSuccess with Product with Serializable
    Definition Classes
    Parsers
  4. type Input = Reader[Elem]
    Definition Classes
    Parsers
  5. sealed abstract class NoSuccess extends ParseResult[Nothing]
    Definition Classes
    Parsers
  6. trait OnceParser[+T] extends Parser[T]
    Definition Classes
    Parsers
  7. sealed abstract class ParseResult[+T] extends AnyRef
    Definition Classes
    Parsers
  8. abstract class Parser[+T] extends (Input) ⇒ ParseResult[T]
    Definition Classes
    Parsers
  9. case class Success[+T] extends ParseResult[T] with Product with Serializable
    Definition Classes
    Parsers
  10. case class ~[+a, +b] extends Product with Serializable
    Definition Classes
    Parsers

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def OnceParser[T](f: (Input) ⇒ ParseResult[T]): Parser[T] with OnceParser[T]
    Definition Classes
    Parsers
  5. def Parser[T](f: (Input) ⇒ ParseResult[T]): Parser[T]
    Definition Classes
    Parsers
  6. def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
    Definition Classes
    Parsers
  7. def accept[ES](es: ES)(implicit arg0: (ES) ⇒ List[Elem]): Parser[List[Elem]]
    Definition Classes
    Parsers
  8. implicit def accept(e: Elem): Parser[Elem]
    Definition Classes
    Parsers
  9. def acceptIf(p: (Elem) ⇒ Boolean)(err: (Elem) ⇒ String): Parser[Elem]
    Definition Classes
    Parsers
  10. def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
    Definition Classes
    Parsers
  11. def acceptSeq[ES](es: ES)(implicit arg0: (ES) ⇒ Iterable[Elem]): Parser[List[Elem]]
    Definition Classes
    Parsers
  12. def allowXmlBlocks: Boolean

    Determines if xml blocks may be included verbatim.

    Determines if xml blocks may be included verbatim. If true, they are passed through, else they are escaped and turned into paragraphs

  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def chainl1[T, U](first: ⇒ Parser[T], p: ⇒ Parser[U], q: ⇒ Parser[(T, U) ⇒ T]): Parser[T]
    Definition Classes
    Parsers
  15. def chainl1[T](p: ⇒ Parser[T], q: ⇒ Parser[(T, T) ⇒ T]): Parser[T]
    Definition Classes
    Parsers
  16. def chainr1[T, U](p: ⇒ Parser[T], q: ⇒ Parser[(T, U) ⇒ U], combine: (T, U) ⇒ U, first: U): Parser[U]
    Definition Classes
    Parsers
  17. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. def commit[T](p: ⇒ Parser[T]): Parser[T]
    Definition Classes
    Parsers
  19. def elem(e: Elem): Parser[Elem]
    Definition Classes
    Parsers
  20. def elem(kind: String, p: (Elem) ⇒ Boolean): Parser[Elem]
    Definition Classes
    Parsers
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  23. def err(msg: String): Parser[Nothing]
    Definition Classes
    Parsers
  24. def failure(msg: String): Parser[Nothing]
    Definition Classes
    Parsers
  25. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def firstChar(line: String): Char

    Returns the first char in the given string or a newline if the string is empty.

    Returns the first char in the given string or a newline if the string is empty. This is done to speed up header parsing. Used to speed up line tokenizing substantially by using the first char in a line as lookahead for which parsers to even try.

  27. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  28. def guard[T](p: ⇒ Parser[T]): Parser[T]
    Definition Classes
    Parsers
  29. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  30. def indicatorChar(line: String): Char

    Finds the char in the given line that is the best indication of what kind of markdown line this is.

    Finds the char in the given line that is the best indication of what kind of markdown line this is. The “special” Markdown lines all start with up to three spaces. Those are skipped if present. The first char after those (up to)three spaces or a newline is returned.

  31. def innerTokenize(lines: List[String], lookup: Map[String, LinkDefinition]): MarkdownLineReader

    Turns a list of inner lines (the payloads of the lines making up the block) into line tokens.

    Turns a list of inner lines (the payloads of the lines making up the block) into line tokens. Does not check for XML chunks or link definitions.

  32. def innerTokens(lookup: Map[String, LinkDefinition]): Parser[MarkdownLineReader]

    Parses tokens that may occur inside a block.

    Parses tokens that may occur inside a block. Works like the normal token parser except that it does not check for link definitions and verbatim XML.

  33. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  34. def lineToken: Parser[MarkdownLine]

    Parses Markdown Lines.

    Parses Markdown Lines. Always succeeds.

  35. def linkDefinition: Parser[LinkDefinition]

    Parses a link definition.

  36. def log[T](p: ⇒ Parser[T])(name: String): Parser[T]
    Definition Classes
    Parsers
  37. def maybeUrlInNextLine(prev: (LinkDefinitionStart, Option[String])): Parser[LinkDefinition]

    Tries to parse an URL from the next line if necessary.

    Tries to parse an URL from the next line if necessary. The passed tuple is the result from a previous parser and used to decide how to continue parsing.

  38. def mkList[T]: (~[T, List[T]]) ⇒ List[T]
    Definition Classes
    Parsers
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. def not[T](p: ⇒ Parser[T]): Parser[Unit]
    Definition Classes
    Parsers
  41. def notXmlChunkEnd: Parser[String]

    Parses any line that does not start with a closing XML element.

  42. final def notify(): Unit
    Definition Classes
    AnyRef
  43. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  44. def opt[T](p: ⇒ Parser[T]): Parser[Option[T]]
    Definition Classes
    Parsers
  45. def p[T](parser: lineParsers.Parser[T]): Parser[T]

    Returns a parser based on the given line parser.

    Returns a parser based on the given line parser. The resulting parser succeeds if the given line parser consumes the whole String.

  46. def phrase[T](p: Parser[T]): Parser[T]
    Definition Classes
    Parsers
  47. def positioned[T <: Positional](p: ⇒ Parser[T]): Parser[T]
    Definition Classes
    Parsers
  48. def preprocessToken: Parser[Product with Serializable]

    Parses link definitions and verbatim xml blocks

  49. def rep[T](p: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
  50. def rep1[T](first: ⇒ Parser[T], p0: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The p0 call-by-name arguments is evaluated at most once per constructed Parser object, instead of on every need that arises during parsing.

  51. def rep1[T](p: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
  52. def rep1sep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]
    Definition Classes
    Parsers
  53. def repN[T](num: Int, p: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
  54. def repsep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]
    Definition Classes
    Parsers
  55. def splitLines(s: String): List[String]

    Simple preprocessing: split the input at each newline.

    Simple preprocessing: split the input at each newline. These whole lines are then fed to the actual Tokenizer.

  56. def success[T](v: T): Parser[T]
    Definition Classes
    Parsers
  57. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  58. def toString(): String
    Definition Classes
    AnyRef → Any
  59. def tokenize(lines: Reader[String]): MarkdownLineReader

    Tokenizes preprocessed lines read from a line reader.

  60. def tokenize(lines: List[String]): MarkdownLineReader

    Tokenizes a preprocessed Markdown document.

  61. def tokenize(s: String): MarkdownLineReader

    Tokenizes a whole Markdown document.

  62. def tokens: Parser[MarkdownLineReader]

    Parses first level line tokens, i.e.

    Parses first level line tokens, i.e. Markdown lines, XML chunks and link definitions.

  63. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  65. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. def xmlChunk: Parser[XmlChunk]

    Very dumb parser for XML chunks.

  67. def xmlChunkEnd: Parser[String]

    Parses a line beginning with a closing XML tag.

  68. def xmlChunkStart: Parser[String]

    The start of a verbatim XML chunk: any line starting directly with an XML element

  69. object lineParsers extends LineParsers

Inherited from Parsers

Inherited from AnyRef

Inherited from Any

Ungrouped