@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at upstream/main 44 lines 968 B view raw
1<?php 2 3final class PhutilRemarkupDefaultBlockRule extends PhutilRemarkupBlockRule { 4 5 public function getPriority() { 6 return 750; 7 } 8 9 public function getMatchingLineCount(array $lines, $cursor) { 10 return 1; 11 } 12 13 public function markupText($text, $children) { 14 $engine = $this->getEngine(); 15 16 $text = trim($text); 17 $text = $this->applyRules($text); 18 19 if ($engine->isTextMode()) { 20 if (!$this->getEngine()->getConfig('preserve-linebreaks')) { 21 $text = preg_replace('/ *\n */', ' ', $text); 22 } 23 return $text; 24 } 25 26 if ($engine->getConfig('preserve-linebreaks')) { 27 $text = phutil_escape_html_newlines($text); 28 } 29 30 if (!strlen($text)) { 31 return null; 32 } 33 34 $default_attributes = $engine->getConfig('default.p.attributes'); 35 if ($default_attributes) { 36 $attributes = $default_attributes; 37 } else { 38 $attributes = array(); 39 } 40 41 return phutil_tag('p', $attributes, $text); 42 } 43 44}