DelimMatcher

class DelimMatcher(delim: String, toSpan: Seq[Span] => Span, recursive: Boolean, escape: Option[Char]) extends String => Option[SpanMatch]
Value Params
delim

The delimiter string to match the next 2 sequences of.

escape

If set, how you can escape this sequence.

recursive

If you want the contained element to be reconverted.

toSpan

Factory to create the actual SpanMatch.

trait String => Option[SpanMatch]
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(source: String): Option[SpanMatch]

Inherited methods

@unspecialized
def andThen[A](g: Option[SpanMatch] => A): String => A
Inherited from
Function1
@unspecialized
def compose[A](g: A => String): A => Option[SpanMatch]
Inherited from
Function1
override def toString(): String
Definition Classes
Function1 -> Any
Inherited from
Function1