Skip to content

Commit

Permalink
Merge branch 'MDL-55007-master' of https://github.com/dthies/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Jul 12, 2016
2 parents f71eaa7 + fa3f814 commit acb75af
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
17 changes: 16 additions & 1 deletion filter/mathjaxloader/filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,22 @@ public function filter($text, array $options = array()) {
}
if ($hasinline || $hasdisplay || $hasextra) {
$PAGE->requires->yui_module('moodle-filter_mathjaxloader-loader', 'M.filter_mathjaxloader.typeset');
return '<span class="nolink"><span class="filter_mathjaxloader_equation">' . $text . '</span></span>';
if ($hasextra) {
// If custom dilimeters are used, wrap whole text to prevent autolinking.
$text = '<span class="nolink">' + $text + '</span>';
} else {
if ($hasinline) {
// If the default inline TeX delimiters \( \) are present, wrap each pair in nolink.
$text = preg_replace('/\\\\\\([\S\s]*?\\\\\\)/u',
'<span class="nolink">\0</span>', $text);
}
if ($hasdisplay) {
// If default display TeX is used, wrap $$ $$ or \[ \] individually.
$text = preg_replace('/\$\$[\S\s]*?\$\$|\\\\\\[[\S\s]*?\\\\\\]/u',
'<span class="nolink">\0</span>', $text);
}
}
return '<span class="filter_mathjaxloader_equation">' . $text . '</span>';
}
return $text;
}
Expand Down
4 changes: 2 additions & 2 deletions lib/tests/externallib_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public function test_external_format_text() {

$test = '$$ \pi $$';
$testformat = FORMAT_MARKDOWN;
$correct = array('<span class="nolink"><span class="filter_mathjaxloader_equation"><p>$$ \pi $$</p>
</span></span>', FORMAT_HTML);
$correct = array('<span class="filter_mathjaxloader_equation"><p><span class="nolink">$$ \pi $$</span></p>
</span>', FORMAT_HTML);
$this->assertSame(external_format_text($test, $testformat, $context->id, 'core', '', 0), $correct);

// Filters can be opted out from by the developer.
Expand Down

0 comments on commit acb75af

Please sign in to comment.