@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 support and very basic styling for quotes in Phabricator

Summary: Ref T4119. Adds the block rule and makes a faint effort at CSS.

Test Plan: See D8953 for a screenshot.

Reviewers: chad, btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T4119

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

+5
+1
src/infrastructure/markup/PhabricatorMarkupEngine.php
··· 470 470 471 471 $blocks = array(); 472 472 $blocks[] = new PhutilRemarkupEngineRemarkupQuotesBlockRule(); 473 + $blocks[] = new PhutilRemarkupEngineRemarkupReplyBlockRule(); 473 474 $blocks[] = new PhutilRemarkupEngineRemarkupLiteralBlockRule(); 474 475 $blocks[] = new PhutilRemarkupEngineRemarkupHeaderBlockRule(); 475 476 $blocks[] = new PhutilRemarkupEngineRemarkupHorizontalRuleBlockRule();
+4
webroot/rsrc/css/core/remarkup.css
··· 163 163 font-style: normal; 164 164 } 165 165 166 + .phabricator-remarkup blockquote div.remarkup-reply-head { 167 + font-weight: bold; 168 + } 169 + 166 170 .phabricator-remarkup img.remarkup-proxy-image { 167 171 max-width: 640px; 168 172 max-height: 640px;