diff --git a/src/infrastructure/markup/interpreter/PhabricatorRemarkupGraphvizBlockInterpreter.php b/src/infrastructure/markup/interpreter/PhabricatorRemarkupGraphvizBlockInterpreter.php --- a/src/infrastructure/markup/interpreter/PhabricatorRemarkupGraphvizBlockInterpreter.php +++ b/src/infrastructure/markup/interpreter/PhabricatorRemarkupGraphvizBlockInterpreter.php @@ -42,12 +42,13 @@ return '<'.$file->getBestURI().'>'; } - return phutil_tag( + $img = phutil_tag( 'img', array( 'src' => $file->getBestURI(), 'width' => nonempty($width, null), )); + return phutil_tag_div('phabricator-remarkup-embed-image-full', $img); } // TODO: This is duplicated from PhabricatorEmbedFileRemarkupRule since they