Packages

class ListItem extends LineParsers

Helper class to build lists. Allows easy checking if an item ends with empty lines and recursively builds the content of an item.

Linear Supertypes
LineParsers, InlineParsers, BaseParsers, RegexParsers, Parsers, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ListItem
  2. LineParsers
  3. InlineParsers
  4. BaseParsers
  5. RegexParsers
  6. Parsers
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ListItem(lines: List[MarkdownLine], lookup: Map[String, LinkDefinition])

Type Members

  1. type Elem = Char
    Definition Classes
    RegexParsers → 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. type LinkMap = Map[String, LinkDefinition]

    Defines a lookup map for link definitions.

    Defines a lookup map for link definitions.

    Definition Classes
    InlineParsers
  6. sealed abstract class NoSuccess extends ParseResult[Nothing]
    Definition Classes
    Parsers
  7. trait OnceParser[+T] extends Parser[T]
    Definition Classes
    Parsers
  8. sealed abstract class ParseResult[+T] extends AnyRef
    Definition Classes
    Parsers
  9. abstract class Parser[+T] extends (Input) ⇒ ParseResult[T]
    Definition Classes
    Parsers
  10. case class Success[+T] extends ParseResult[T] with Product with Serializable
    Definition Classes
    Parsers
  11. type VisitedTags = Set[String]

    A set of tags we have already created.

    A set of tags we have already created. Used to prevent nesting a link in a link or an emphasis in an emphasis.

    Definition Classes
    InlineParsers
  12. case class ~[+a, +b] extends Product with Serializable
    Definition Classes
    Parsers
  13. case class InlineContext (map: LinkMap, tags: VisitedTags) extends Product with Serializable

    Keeps track of visited tags and provides a lookup for link ids.

    Keeps track of visited tags and provides a lookup for link ids.

    Definition Classes
    InlineParsers

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 aChar: Parser[String]
    Definition Classes
    BaseParsers
  7. def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
    Definition Classes
    Parsers
  8. def accept[ES](es: ES)(implicit arg0: (ES) ⇒ List[Elem]): Parser[List[Elem]]
    Definition Classes
    Parsers
  9. implicit def accept(e: Elem): Parser[Elem]
    Definition Classes
    Parsers
  10. def acceptIf(p: (Elem) ⇒ Boolean)(err: (Elem) ⇒ String): Parser[Elem]
    Definition Classes
    Parsers
  11. def acceptMatch[S, T](f: PartialFunction[S, T])(p: Parser[S]): Parser[T]

    Succeeds if the given parsers succeeds and the given function is defined at the parse result.

    Succeeds if the given parsers succeeds and the given function is defined at the parse result. Returns the result of the method applied to the given parsers result.

    Definition Classes
    BaseParsers
  12. def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
    Definition Classes
    Parsers
  13. def acceptSeq[ES](es: ES)(implicit arg0: (ES) ⇒ Iterable[Elem]): Parser[List[Elem]]
    Definition Classes
    Parsers
  14. def addResult(level: Int, out: StringBuilder, paragraph_?: Boolean): Unit
  15. def any: Parser[String]

    Matches exactly one char, no matter which.

    Matches exactly one char, no matter which. This differs from "elem" as it returns a string consisting of that char.

    Definition Classes
    BaseParsers
  16. def apply[T](p: Parser[T], in: String): T

    Runs the given parser on the given input.

    Runs the given parser on the given input. Expects the parser to succeed and consume all input. Throws an IllegalArgumentException if parsing failed.

    Definition Classes
    BaseParsers
  17. def applyInline(s: String, m: LinkMap): String

    Runs the inline parser on the given input and returns the result

    Runs the inline parser on the given input and returns the result

    Definition Classes
    InlineParsers
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. val atxHeader: Parser[AtxHeaderLine]

    Parses headers of the form: ### header ###

    Parses headers of the form: ### header ###

    Definition Classes
    LineParsers
  20. val blockquoteLine: Parser[BlockQuoteLine]

    Matches a line starting with up to three spaces, a '>' and an optional whitespace.

    Matches a line starting with up to three spaces, a '>' and an optional whitespace. (i.e.: the start or continuation of a block quote.)

    Definition Classes
    LineParsers
  21. val br: Parser[String]

    Parses two spaces at the end of a line to a manual break (
    )

    Parses two spaces at the end of a line to a manual break (
    )

    Definition Classes
    InlineParsers
  22. def chainl1[T, U](first: ⇒ Parser[T], p: ⇒ Parser[U], q: ⇒ Parser[(T, U) ⇒ T]): Parser[T]
    Definition Classes
    Parsers
  23. def chainl1[T](p: ⇒ Parser[T], q: ⇒ Parser[(T, T) ⇒ T]): Parser[T]
    Definition Classes
    Parsers
  24. def chainr1[T, U](p: ⇒ Parser[T], q: ⇒ Parser[(T, U) ⇒ U], combine: (T, U) ⇒ U, first: U): Parser[U]
    Definition Classes
    Parsers
  25. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. val code: Parser[String]

    Parses an inline code element.

    Parses an inline code element. An inline code element is surrounded by single backticks ("") or double backticks ("").

    Definition Classes
    InlineParsers
  27. val codeLine: Parser[CodeLine]

    Matches a code example line: any line starting with four spaces or a tab.

    Matches a code example line: any line starting with four spaces or a tab.

    Definition Classes
    LineParsers
  28. def commit[T](p: ⇒ Parser[T]): Parser[T]
    Definition Classes
    Parsers
  29. def deco(): Decorator

    Defines how the output is formatted and whether inline xml elements are allowed.

    Defines how the output is formatted and whether inline xml elements are allowed.

    Definition Classes
    InlineParsers
  30. val directImg: Parser[String]

    An image with an explicit path.

    An image with an explicit path.

    Definition Classes
    InlineParsers
  31. def elem(e: Elem): Parser[Elem]
    Definition Classes
    Parsers
  32. def elem(kind: String, p: (Elem) ⇒ Boolean): Parser[Elem]
    Definition Classes
    Parsers
  33. def elementParsers(ctx: InlineContext): Parser[String]

    Hand rolled parser that parses a chunk of special inline markdown (like links or emphasis) based on a one char lookahead.

    Hand rolled parser that parses a chunk of special inline markdown (like links or emphasis) based on a one char lookahead.

    Definition Classes
    InlineParsers
  34. def emAsterisk(ctx: InlineContext): Parser[String]

    Parses emphasized text wrapped in asterisks: *foo*

    Parses emphasized text wrapped in asterisks: *foo*

    Definition Classes
    InlineParsers
  35. def emUnderscore(ctx: InlineContext): Parser[String]

    Parses emphasized text wrapped in underscores: _foo_

    Parses emphasized text wrapped in underscores: _foo_

    Definition Classes
    InlineParsers
  36. val emptyLine: Parser[MarkdownLine]

    Accepts an empty line.

    Accepts an empty line. (A line that consists only of optional whitespace or the empty string.)

    Definition Classes
    LineParsers
  37. val emptyOrCode: Parser[MarkdownLine]

    First tries if the line is empty, if not tries for a code line.

    First tries if the line is empty, if not tries for a code line.

    Definition Classes
    LineParsers
  38. def endsWithNewline: Boolean
  39. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  41. def err(msg: String): Parser[Nothing]
    Definition Classes
    Parsers
  42. def escapeFastForXml(c: Char): String

    Either returns the XML escape sequence for the given char or null.

    Either returns the XML escape sequence for the given char or null. This does not return Option[String] on purpose. While Option[String] would be a much cleaner solution, this is actually called so often that it is a noticeable difference if we use Option here.

    Definition Classes
    BaseParsers
  43. def escapeForXml(c: Char): String

    Escapes the given char for XML.

    Escapes the given char for XML. Returns Either the necessary XML escape Sequence or the same char in a String.

    Definition Classes
    BaseParsers
  44. def escapeXml(s: String): String

    Escapes the given string so it it can be embedded in xml.

    Escapes the given string so it it can be embedded in xml. Markdown escapes are not processed.

    Definition Classes
    InlineParsers
  45. val extendedFencedCodeLine: Parser[ExtendedFencedCode]

    Matches the start of a fenced code block with additional language token: up to three spaces, three or more backticks, whitespace, an optional language token, optional whitespace

    Matches the start of a fenced code block with additional language token: up to three spaces, three or more backticks, whitespace, an optional language token, optional whitespace

    Definition Classes
    LineParsers
  46. def failure(msg: String): Parser[Nothing]
    Definition Classes
    Parsers
  47. def fastLink(ctx: InlineContext): Parser[String]

    A shortcut markdown link of the form <http://example.com>

    A shortcut markdown link of the form <http://example.com>

    Definition Classes
    InlineParsers
  48. val fencedCodeLine: Parser[FencedCode]

    A fenced code line.

    A fenced code line. Can be the start or the end of a fenced code block

    Definition Classes
    LineParsers
  49. val fencedCodeStartOrEnd: Parser[MarkdownLine]

    Parses one of the fenced code lines

    Parses one of the fenced code lines

    Definition Classes
    LineParsers
  50. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  51. def fullLink(ctx: InlineContext): Parser[String]

    A markdown link with the full url given.

    A markdown link with the full url given.

    Definition Classes
    InlineParsers
  52. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  53. def guard[T](p: ⇒ Parser[T]): Parser[T]
    Definition Classes
    Parsers
  54. def handleWhiteSpace(source: CharSequence, offset: Int): Int
    Attributes
    protected
    Definition Classes
    RegexParsers
  55. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  56. def idReference(ctx: InlineContext): Parser[(String, LinkDefinition)]

    Parses an id reference.

    Parses an id reference. (Any text that is not a square bracket) Succeeds only if the parsed id is found in the given lookup. Returns the found link definition and the matched text.

    Definition Classes
    InlineParsers
  57. def img(ctx: InlineContext): Parser[String]

    Parses either a referenced or a directly defined image.

    Parses either a referenced or a directly defined image.

    Definition Classes
    InlineParsers
  58. def inline(m: LinkMap): Parser[String]

    Parser for inline markdown, always consumes all input, returns the resulting HTML.

    Parser for inline markdown, always consumes all input, returns the resulting HTML.

    Definition Classes
    InlineParsers
  59. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  60. val lines: List[MarkdownLine]
  61. def link(ctx: InlineContext): Parser[String]

    A link started by square brackets, either a reference or a a link with the full URL.

    A link started by square brackets, either a reference or a a link with the full URL.

    Definition Classes
    InlineParsers
  62. def linkDefinitionId: Parser[String]

    The Start of a link definition: the id in square brackets, optionally indented by three spaces

    The Start of a link definition: the id in square brackets, optionally indented by three spaces

    Definition Classes
    LineParsers
  63. def linkDefinitionStart: Parser[(LinkDefinitionStart, Option[String])]

    A link definition that later gets stripped from the output.

    A link definition that later gets stripped from the output. Either a link definition on one line or the first line of a two line link definition.

    Definition Classes
    LineParsers
  64. def linkDefinitionTitle: Parser[String]

    The title in a link definition.

    The title in a link definition.

    Definition Classes
    LineParsers
  65. def linkDefinitionUrl: Parser[String]

    The link url in a link definition.

    The link url in a link definition.

    Definition Classes
    LineParsers
  66. def linkInline(ctx: InlineContext): Parser[String]

    Inline markdown in a link.

    Inline markdown in a link. Like normal inline stuff but stops when it reaches a closing square bracket.

    Definition Classes
    InlineParsers
  67. implicit def literal(s: String): Parser[String]
    Definition Classes
    RegexParsers
  68. def log[T](p: ⇒ Parser[T])(name: String): Parser[T]
    Definition Classes
    Parsers
  69. def lookbehind(cs: Set[Char]): Parser[Unit]

    Looks if the preceding char was one of the given chars.

    Looks if the preceding char was one of the given chars. Never consumes any input.

    Definition Classes
    BaseParsers
  70. def markdownText(special: Set[Char], markdownEscapes: Boolean): Parser[String]

    Parses markdown text up to any of the chars defined in the given map.

    Parses markdown text up to any of the chars defined in the given map. used to quickly escape any text between special inline markdown like emphasis.

    Definition Classes
    InlineParsers
  71. def mkList[T]: (~[T, List[T]]) ⇒ List[T]
    Definition Classes
    Parsers
  72. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  73. def nl: Parser[String]

    Accepts a unix newline and returns a string containing a single newline.

    Accepts a unix newline and returns a string containing a single newline.

    Definition Classes
    BaseParsers
  74. def not[T](p: ⇒ Parser[T]): Parser[Unit]
    Definition Classes
    Parsers
  75. def notXmlBlockEndLine: Parser[String]

    A line not starting with an xml end tag

    A line not starting with an xml end tag

    Definition Classes
    LineParsers
  76. final def notify(): Unit
    Definition Classes
    AnyRef
  77. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  78. val oItemStartLine: Parser[OItemStartLine]

    A line that starts an ordered list item.

    A line that starts an ordered list item. Matches a line starting with up to three spaces followed by a number, a dot and a space, and any whitespace

    Definition Classes
    LineParsers
  79. def oneInline(ctx: InlineContext): Parser[String]

    Parses a single inline token.

    Parses a single inline token. Either a span element or a chunk of text.

    Definition Classes
    InlineParsers
  80. def oneOf(lookup: Map[Char, String]): Parser[String]

    Matches one of the given char keys in the map.

    Matches one of the given char keys in the map. Returns the string value for the matched char in the given map.

    Definition Classes
    BaseParsers
  81. def oneOf(lookup: Set[Char]): Parser[String]

    Matches one of the chars in the given set.

    Matches one of the chars in the given set. Returns a string with the matched char.

    Definition Classes
    BaseParsers
  82. def opt[T](p: ⇒ Parser[T]): Parser[Option[T]]
    Definition Classes
    Parsers
  83. val otherLine: Parser[OtherLine]

    Matches any line.

    Matches any line. Only called when all other line parsers have failed. Makes sure line tokenizing does not fail and we do not loose any lines on the way.

    Definition Classes
    LineParsers
  84. def ows: Parser[String]

    accepts zero or more spaces or tabs returns the matched whitespace

    accepts zero or more spaces or tabs returns the matched whitespace

    Definition Classes
    BaseParsers
  85. def parse[T](p: Parser[T], in: Reader): ParseResult[T]
    Definition Classes
    RegexParsers
  86. def parse[T](p: Parser[T], in: CharSequence): ParseResult[T]
    Definition Classes
    RegexParsers
  87. def parse[T](p: Parser[T], in: Reader[Char]): ParseResult[T]
    Definition Classes
    RegexParsers
  88. def parseAll[T](p: Parser[T], in: CharSequence): ParseResult[T]
    Definition Classes
    RegexParsers
  89. def parseAll[T](p: Parser[T], in: Reader): ParseResult[T]
    Definition Classes
    RegexParsers
  90. def parseAll[T](p: Parser[T], in: Reader[Char]): ParseResult[T]
    Definition Classes
    RegexParsers
  91. def phrase[T](p: Parser[T]): Parser[T]
    Definition Classes
    RegexParsers → Parsers
  92. def positioned[T <: Positional](p: ⇒ Parser[T]): Parser[T]
    Definition Classes
    RegexParsers → Parsers
  93. def range(begin: Char, end: Char): Parser[Char]

    Matches one char in the given range, returns the matched char.

    Matches one char in the given range, returns the matched char.

    Definition Classes
    BaseParsers
  94. def ranges(rs: SortedMap[Char, Char]): Parser[Char]
    Definition Classes
    BaseParsers
  95. def ref(ctx: InlineContext): Parser[(LinkDefinition, String)]

    A markdown reference of the form [text][id], [idText][] or [idText] Parser returns a tuple with the link definition first and the text to display second.

    A markdown reference of the form [text][id], [idText][] or [idText] Parser returns a tuple with the link definition first and the text to display second.

    Definition Classes
    InlineParsers
  96. def refImg(ctx: InlineContext): Parser[String]

    Parses a referenced image.

    Parses a referenced image.

    Definition Classes
    InlineParsers
  97. val refText: Parser[String]

    Plaintext variant to refInline.

    Plaintext variant to refInline. Escapable text until a square bracket is hit.

    Definition Classes
    InlineParsers
  98. def referenceLink(ctx: InlineContext): Parser[String]

    A markdown link which references an url by id.

    A markdown link which references an url by id.

    Definition Classes
    InlineParsers
  99. implicit def regex(r: Regex): Parser[String]
    Definition Classes
    RegexParsers
  100. def rep[T](p: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
  101. 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.

  102. def rep1[T](p: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
  103. def rep1sep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]
    Definition Classes
    Parsers
  104. def repN[T](num: Int, p: ⇒ Parser[T]): Parser[List[T]]
    Definition Classes
    Parsers
  105. def repsep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]
    Definition Classes
    Parsers
  106. def rest: Parser[String]

    Matches everything in the parsed string up to the end.

    Matches everything in the parsed string up to the end. Also matches the empty String. Returns the matched String.

    Definition Classes
    BaseParsers
  107. val ruler: Parser[MarkdownLine]

    Parses a horizontal rule.

    Parses a horizontal rule.

    Definition Classes
    LineParsers
  108. val rulerOrUItem: Parser[MarkdownLine]

    First tries for a ruler, then for an unordered list item start.

    First tries for a ruler, then for an unordered list item start.

    Definition Classes
    LineParsers
  109. val setext2OrRulerOrUItem: Parser[MarkdownLine]

    First tries for a setext header level 2, then for a ruler.

    First tries for a setext header level 2, then for a ruler.

    Definition Classes
    LineParsers
  110. val setextHeader1: Parser[SetExtHeaderLine]

    Parses the line under a setext style level 1 header: =====

    Parses the line under a setext style level 1 header: =====

    Definition Classes
    LineParsers
  111. val setextHeader2: Parser[SetExtHeaderLine]

    Parses the line under a setext style level 2 header: -----

    Parses the line under a setext style level 2 header: -----

    Definition Classes
    LineParsers
  112. def skipWhitespace: Boolean

    Whitespace is sometimes important in markdown parsing, we handle it manually.

    Whitespace is sometimes important in markdown parsing, we handle it manually. So this returns false.

    Definition Classes
    BaseParsers → RegexParsers
  113. def span(limiter: String, ctx: InlineContext): Parser[String]

    Parses a span element like foo or *bar*

    Parses a span element like foo or *bar*

    Definition Classes
    InlineParsers
  114. def spanAsterisk(ctx: InlineContext): Parser[String]

    Either an emphasis or a strong text wrapped in asterisks.

    Either an emphasis or a strong text wrapped in asterisks.

    Definition Classes
    InlineParsers
  115. def spanInline(end: Parser[Any], ctx: InlineContext): Parser[String]

    Parses inline in a span element like bold or emphasis or link up until the given end marker

    Parses inline in a span element like bold or emphasis or link up until the given end marker

    Definition Classes
    InlineParsers
  116. def spanUnderscore(ctx: InlineContext): Parser[String]

    Either an emphasis or strong text wrapped in underscores.

    Either an emphasis or strong text wrapped in underscores.

    Definition Classes
    InlineParsers
  117. val specialInlineChars: Set[Char]

    Chars that may indicate the start of a special Markdown inline sequence.

    Chars that may indicate the start of a special Markdown inline sequence.

    Definition Classes
    InlineParsers
  118. val specialLinkInlineChars: Set[Char]

    Chars that may indicate the start of a special markdown inline sequence or the end of a link text.

    Chars that may indicate the start of a special markdown inline sequence or the end of a link text.

    Definition Classes
    InlineParsers
  119. def strongAsterisk(ctx: InlineContext): Parser[String]

    Parses strong text in asterisks: **foo**

    Parses strong text in asterisks: **foo**

    Definition Classes
    InlineParsers
  120. def strongUnderscore(ctx: InlineContext): Parser[String]

    Parses strong text in underscores: foo

    Parses strong text in underscores: foo

    Definition Classes
    InlineParsers
  121. def success[T](v: T): Parser[T]
    Definition Classes
    Parsers
  122. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  123. val title: Parser[Option[String]]

    A title is everything in quotation marks.

    A title is everything in quotation marks. We allow even quotation marks in quotation marks. We look ahead if we hit the closing brace after the quotation marks to detect if the title ends or not.

    Definition Classes
    InlineParsers
  124. def toString(): String
    Definition Classes
    AnyRef → Any
  125. val uItemStartLine: Parser[UItemStartLine]

    A line that starts an unordered list item.

    A line that starts an unordered list item. Matches a line starting with up to three spaces followed by an asterisk, a space, and any whitespace.

    Definition Classes
    LineParsers
  126. val url: Parser[String]

    We parse everything as a link/img url until we hit whitespace or a closing brace.

    We parse everything as a link/img url until we hit whitespace or a closing brace.

    Definition Classes
    InlineParsers
  127. def verboseString(c: Char): String

    Returns a verbose description of a char (printed char & hex code).

    Returns a verbose description of a char (printed char & hex code). Used for debugging.

    Definition Classes
    BaseParsers
  128. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  129. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  130. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  131. val whiteSpace: Regex
    Attributes
    protected
    Definition Classes
    RegexParsers
  132. def ws: Parser[String]

    accepts one or more spaces or tabs returns the matched whitespace

    accepts one or more spaces or tabs returns the matched whitespace

    Definition Classes
    BaseParsers
  133. def xmlAttr: Parser[String]

    Parses an XML Attribute with simplified value handling like xmlAttrVal.

    Parses an XML Attribute with simplified value handling like xmlAttrVal.

    Definition Classes
    BaseParsers
  134. def xmlAttrVal: Parser[String]

    Parses a Simplified xml attribute: everything between quotes ("foo") everything between the quotes is run through the escape handling That way you can omit xml escaping when writing inline XML in markdown.

    Parses a Simplified xml attribute: everything between quotes ("foo") everything between the quotes is run through the escape handling That way you can omit xml escaping when writing inline XML in markdown.

    Definition Classes
    BaseParsers
  135. def xmlBlockEndLine: Parser[String]

    A line that ends an xml block: a line starting with an xml end tag

    A line that ends an xml block: a line starting with an xml end tag

    Definition Classes
    LineParsers
  136. def xmlBlockStartLine: Parser[String]

    A line that starts an xml block: an opening xml element fragment.

    A line that starts an xml block: an opening xml element fragment.

    Definition Classes
    LineParsers
  137. def xmlEndTag: Parser[String]

    Parses closing xml tags.

    Parses closing xml tags.

    Definition Classes
    BaseParsers
  138. def xmlName: Parser[String]

    Parses an XML name (tag or attribute name)

    Parses an XML name (tag or attribute name)

    Definition Classes
    BaseParsers
  139. def xmlNameChar: Parser[Char]

    Parses an XML name char according to W3C spec except that range #x10000 to #xEFFFF is excluded

    Parses an XML name char according to W3C spec except that range #x10000 to #xEFFFF is excluded

    Definition Classes
    BaseParsers
  140. val xmlNameCharRanges: SortedMap[Char, Char]
    Definition Classes
    BaseParsers
  141. def xmlNameStartChar: Parser[Char]

    Parser for one char that starts an XML name.

    Parser for one char that starts an XML name. According to W3C specs except that range #x10000 to #xEFFFF is excluded (cannot be expressed by char literals)

    Definition Classes
    BaseParsers
  142. val xmlNameStartCharRanges: SortedMap[Char, Char]
    Definition Classes
    BaseParsers
  143. def xmlStartOrEmptyTag: Parser[String]

    Parses an xml start or empty tag, attribute values are escaped.

    Parses an xml start or empty tag, attribute values are escaped.

    Definition Classes
    BaseParsers
  144. val xmlTag: Parser[String]

    Parses any xml tag and escapes attribute values.

    Parses any xml tag and escapes attribute values.

    Definition Classes
    InlineParsers

Inherited from LineParsers

Inherited from InlineParsers

Inherited from BaseParsers

Inherited from RegexParsers

Inherited from Parsers

Inherited from AnyRef

Inherited from Any

Ungrouped