@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
1
fork

Configure Feed

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

Add "phabricator-remarkup" to transaction comments

Summary: Fixes T2596. We currently omit this, so we don't get some styling (lists, e.g.)

Test Plan: Viewed a remarkup list in Macro, Pholio.

Reviewers: chad, vrana

Reviewed By: chad

CC: aran

Maniphest Tasks: T2596

Differential Revision: https://secure.phabricator.com/D5114

+7 -1
+7 -1
src/applications/transactions/storage/PhabricatorApplicationTransactionComment.php
··· 71 71 72 72 73 73 public function didMarkupText($field, $output, PhutilMarkupEngine $engine) { 74 - return $output; 74 + require_celerity_resource('phabricator-remarkup-css'); 75 + return phutil_tag( 76 + 'div', 77 + array( 78 + 'class' => 'phabricator-remarkup', 79 + ), 80 + $output); 75 81 } 76 82 77 83