|
Moodle
2.2.1
http://www.collinsharper.com
|

Definition at line 215 of file markdown.php.
| _detab_callback | ( | $ | matches | ) |
Definition at line 1628 of file markdown.php.
| _doAnchors_inline_callback | ( | $ | matches | ) |
| _doAnchors_reference_callback | ( | $ | matches | ) |
| _doAutoLinks_email_callback | ( | $ | matches | ) |
| _doAutoLinks_url_callback | ( | $ | matches | ) |
| _doBlockQuotes_callback | ( | $ | matches | ) |
| _doBlockQuotes_callback2 | ( | $ | matches | ) |
Definition at line 1334 of file markdown.php.
| _doCodeBlocks_callback | ( | $ | matches | ) |
| _doHardBreaks_callback | ( | $ | matches | ) |
| _doHeaders_callback_atx | ( | $ | matches | ) |
Reimplemented in MarkdownExtra_Parser.
Definition at line 938 of file markdown.php.

| _doHeaders_callback_setext | ( | $ | matches | ) |
Reimplemented in MarkdownExtra_Parser.
Definition at line 929 of file markdown.php.

| _doImages_inline_callback | ( | $ | matches | ) |
| _doImages_reference_callback | ( | $ | matches | ) |
| _doLists_callback | ( | $ | matches | ) |
| _hashHTMLBlocks_callback | ( | $ | matches | ) |
| _initDetab | ( | ) |
| _processListItems_callback | ( | $ | matches | ) |
| _stripLinkDefinitions_callback | ( | $ | matches | ) |
Definition at line 380 of file markdown.php.
| _unhash_callback | ( | $ | matches | ) |
Definition at line 1666 of file markdown.php.
| detab | ( | $ | text | ) |
| doAnchors | ( | $ | text | ) |
Definition at line 672 of file markdown.php.
| doAutoLinks | ( | $ | text | ) |
Definition at line 1443 of file markdown.php.
| doBlockQuotes | ( | $ | text | ) |
Definition at line 1305 of file markdown.php.
| doCodeBlocks | ( | $ | text | ) |
Definition at line 1102 of file markdown.php.
| doHardBreaks | ( | $ | text | ) |
Definition at line 662 of file markdown.php.
| doHeaders | ( | $ | text | ) |
Reimplemented in MarkdownExtra_Parser.
Definition at line 899 of file markdown.php.
| doHorizontalRules | ( | $ | text | ) |
| doImages | ( | $ | text | ) |
Definition at line 797 of file markdown.php.
| doItalicsAndBold | ( | $ | text | ) |
| doLists | ( | $ | text | ) |
| encodeAmpsAndAngles | ( | $ | text | ) |
| encodeAttribute | ( | $ | text | ) |
Definition at line 1411 of file markdown.php.


| encodeEmailAddress | ( | $ | addr | ) |
| formParagraphs | ( | $ | text | ) |
Reimplemented in MarkdownExtra_Parser.
Definition at line 1341 of file markdown.php.


| handleSpanToken | ( | $ | token, |
| &$ | str | ||
| ) |
Definition at line 1579 of file markdown.php.


| hashBlock | ( | $ | text | ) |
Definition at line 556 of file markdown.php.


| hashHTMLBlocks | ( | $ | text | ) |
Reimplemented in MarkdownExtra_Parser.
Definition at line 389 of file markdown.php.

| hashPart | ( | $ | text, |
| $ | boundary = 'X' |
||
| ) |
Definition at line 533 of file markdown.php.


| makeCodeSpan | ( | $ | code | ) |
Definition at line 1134 of file markdown.php.


| Markdown_Parser | ( | ) |
Definition at line 242 of file markdown.php.


| outdent | ( | $ | text | ) |
| parseSpan | ( | $ | str | ) |
| processListItems | ( | $ | list_str, |
| $ | marker_any_re | ||
| ) |
| runBasicBlockGamut | ( | $ | text | ) |
Definition at line 591 of file markdown.php.


| runBlockGamut | ( | $ | text | ) |
Definition at line 577 of file markdown.php.


| runSpanGamut | ( | $ | text | ) |
| setup | ( | ) |
Reimplemented in MarkdownExtra_Parser.
Definition at line 275 of file markdown.php.

| stripLinkDefinitions | ( | $ | text | ) |
Definition at line 346 of file markdown.php.
| teardown | ( | ) |
Reimplemented in MarkdownExtra_Parser.
Definition at line 288 of file markdown.php.

| transform | ( | $ | text | ) |
| unhash | ( | $ | text | ) |
| $block_gamut |
array( # # These are all the transformations that form block-level # tags like paragraphs, headers, and list items. # "doHeaders" => 10, "doHorizontalRules" => 20, "doLists" => 40, "doCodeBlocks" => 50, "doBlockQuotes" => 60, )
Definition at line 564 of file markdown.php.
| $document_gamut |
array( # Strip link definitions, store in hashes. "stripLinkDefinitions" => 20, "runBasicBlockGamut" => 30, )
Definition at line 338 of file markdown.php.
| $em_relist |
array( '' => '(?:(?<!\*)\*(?!\*)|(?<!_)_(?!_))(?=\S|$)(?![.,:;]\s)', '*' => '(?<=\S|^)(?<!\*)\*(?!\*)', '_' => '(?<=\S|^)(?<!_)_(?!_)', )
Reimplemented in MarkdownExtra_Parser.
Definition at line 1143 of file markdown.php.
| $em_strong_prepared_relist |
Definition at line 1158 of file markdown.php.
| $em_strong_relist |
array( '' => '(?:(?<!\*)\*\*\*(?!\*)|(?<!_)___(?!_))(?=\S|$)(?![.,:;]\s)', '***' => '(?<=\S|^)(?<!\*)\*\*\*(?!\*)', '___' => '(?<=\S|^)(?<!_)___(?!_)', )
Reimplemented in MarkdownExtra_Parser.
Definition at line 1153 of file markdown.php.
| $empty_element_suffix = MARKDOWN_EMPTY_ELEMENT_SUFFIX |
Definition at line 230 of file markdown.php.
| $escape_chars = '\`*_{}[]()>#+-.!' |
Definition at line 226 of file markdown.php.
| $escape_chars_re |
Definition at line 227 of file markdown.php.
| $html_hashes = array() |
Definition at line 269 of file markdown.php.
| $in_anchor = false |
Definition at line 272 of file markdown.php.
| $list_level = 0 |
Definition at line 1029 of file markdown.php.
| $nested_brackets_depth = 6 |
Definition at line 219 of file markdown.php.
| $nested_brackets_re |
Definition at line 220 of file markdown.php.
| $nested_url_parenthesis_depth = 4 |
Definition at line 222 of file markdown.php.
| $nested_url_parenthesis_re |
Definition at line 223 of file markdown.php.
| $no_entities = false |
Definition at line 235 of file markdown.php.
| $no_markup = false |
Definition at line 234 of file markdown.php.
| $predef_titles = array() |
Definition at line 239 of file markdown.php.
| $predef_urls = array() |
Definition at line 238 of file markdown.php.
| $span_gamut |
array( # # These are all the transformations that occur *within* block-level # tags like paragraphs, headers, and list items. # # Process character escapes, code spans, and inline HTML # in one shot. "parseSpan" => -30, # Process anchor and image tags. Images must come first, # because ![foo][f] looks like an anchor. "doImages" => 10, "doAnchors" => 20, # Make links out of things like `<http: # Must come after doAnchors, because you can use < and > # delimiters in inline links like [this](<url>). "doAutoLinks" => 30, "encodeAmpsAndAngles" => 40, "doItalicsAndBold" => 50, "doHardBreaks" => 60, )
Definition at line 626 of file markdown.php.
| $strong_relist |
array( '' => '(?:(?<!\*)\*\*(?!\*)|(?<!_)__(?!_))(?=\S|$)(?![.,:;]\s)', '**' => '(?<=\S|^)(?<!\*)\*\*(?!\*)', '__' => '(?<=\S|^)(?<!_)__(?!_)', )
Reimplemented in MarkdownExtra_Parser.
Definition at line 1148 of file markdown.php.
| $tab_width = MARKDOWN_TAB_WIDTH |
Definition at line 231 of file markdown.php.
| $titles = array() |
Definition at line 268 of file markdown.php.
| $urls = array() |
Definition at line 267 of file markdown.php.
| $utf8_strlen = 'mb_strlen' |
Definition at line 1613 of file markdown.php.