Page MenuHomec4science

PhutilRemarkupInlineBlockRule.php
No OneTemporary

File Metadata

Created
Sun, Oct 20, 12:05

PhutilRemarkupInlineBlockRule.php

<?php
final class PhutilRemarkupInlineBlockRule extends PhutilRemarkupBlockRule {
public function getMatchingLineCount(array $lines, $cursor) {
return 1;
}
public function markupText($text, $children) {
return $this->applyRules($text);
}
}

Event Timeline