mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Implemented a <hr /> remarkup rule to Phabricator
Summary: Implemented a <hr /> remarkup rule to Phabricator Test Plan: {F36306} Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2744 Differential Revision: https://secure.phabricator.com/D5370
This commit is contained in:
parent
66b414188c
commit
23d72d7e24
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,7 @@ final class PhabricatorMarkupEngine {
|
|||
|
||||
private $objects = array();
|
||||
private $viewer;
|
||||
private $version = 6;
|
||||
private $version = 7;
|
||||
|
||||
|
||||
/* -( Markup Pipeline )---------------------------------------------------- */
|
||||
|
@ -427,6 +427,7 @@ final class PhabricatorMarkupEngine {
|
|||
$blocks[] = new PhutilRemarkupEngineRemarkupQuotesBlockRule();
|
||||
$blocks[] = new PhutilRemarkupEngineRemarkupLiteralBlockRule();
|
||||
$blocks[] = new PhutilRemarkupEngineRemarkupHeaderBlockRule();
|
||||
$blocks[] = new PhutilRemarkupEngineRemarkupHorizontalRuleBlockRule();
|
||||
$blocks[] = new PhutilRemarkupEngineRemarkupListBlockRule();
|
||||
$blocks[] = new PhutilRemarkupEngineRemarkupCodeBlockRule();
|
||||
$blocks[] = new PhutilRemarkupEngineRemarkupNoteBlockRule();
|
||||
|
|
Loading…
Reference in a new issue