Method | Description | |
---|---|---|
addAllFlavor ( ) : void | Add all Vanilla customizations to markdown parsing | |
addBreaks ( ) : void | Add soft breaks to markdown parsing | |
addListFix ( ) : void | Don't require a newline for unordered lists to be recognized. | |
addSpoilers ( ) : void | Add spoilers to markdown parsing | |
addStrikeout ( ) : void | Add strikeouts to markdown parsing |
Method | Description | |
---|---|---|
_doSoftBreaks_callback ( $matches ) | ||
_doSpoilers_callback ( $matches ) | ||
_doSpoilers_callback2 ( $matches ) | ||
_doStrikeout_callback ( $matches ) | ||
doListFix ( string $text ) : string | Work around php-markdown's non-standard implementation of lists. | |
doSoftBreaks ( string $text ) : string | Add soft line breaks implementation (2 methods). | |
doSpoilers ( string $text ) : string | Add Spoilers implementation (3 methods). | |
doStrikeout ( string $text ) : string | Add Strikeout implementation (2 methods). |
public addAllFlavor ( ) : void | ||
return | void |
public addListFix ( ) : void | ||
return | void |
public addSpoilers ( ) : void | ||
return | void |
public addStrikeout ( ) : void | ||
return | void |
protected doSoftBreaks ( string $text ) : string | ||
$text | string | |
return | string |
protected doSpoilers ( string $text ) : string | ||
$text | string | |
return | string |
protected doStrikeout ( string $text ) : string | ||
$text | string | |
return | string |