From 800e3812bc58ccbb54b727810e2d751cbf2b9ae7 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Wed, 5 Nov 2014 09:19:30 -0800 Subject: [PATCH] Style feed stories with phabricator-remarkup Summary: Fixes T6316. Wraps feed content in remarkup. Test Plan: Post a comment with a quote on Task, go to Feed and see the quote properly styled. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T6316 Differential Revision: https://secure.phabricator.com/D10788 --- src/view/phui/PHUIFeedStoryView.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/phui/PHUIFeedStoryView.php b/src/view/phui/PHUIFeedStoryView.php index d5d0fd35b3..a5d14700ac 100644 --- a/src/view/phui/PHUIFeedStoryView.php +++ b/src/view/phui/PHUIFeedStoryView.php @@ -242,7 +242,7 @@ final class PHUIFeedStoryView extends AphrontView { $body = phutil_tag( 'div', array( - 'class' => 'phui-feed-story-body', + 'class' => 'phui-feed-story-body phabricator-remarkup', ), $body_content); }