Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15454214
D15848.id38185.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D15848.id38185.diff
View Options
diff --git a/src/infrastructure/markup/PhabricatorMarkupEngine.php b/src/infrastructure/markup/PhabricatorMarkupEngine.php
--- a/src/infrastructure/markup/PhabricatorMarkupEngine.php
+++ b/src/infrastructure/markup/PhabricatorMarkupEngine.php
@@ -480,6 +480,10 @@
'syntax-highlighter.engine',
$options['syntax-highlighter.engine']);
+ $style_map = id(new PhabricatorDefaultSyntaxStyle())
+ ->getRemarkupStyleMap();
+ $engine->setConfig('phutil.codeblock.style-map', $style_map);
+
$engine->setConfig('uri.full', $options['uri.full']);
$rules = array();
diff --git a/src/infrastructure/syntax/PhabricatorSyntaxStyle.php b/src/infrastructure/syntax/PhabricatorSyntaxStyle.php
--- a/src/infrastructure/syntax/PhabricatorSyntaxStyle.php
+++ b/src/infrastructure/syntax/PhabricatorSyntaxStyle.php
@@ -27,4 +27,18 @@
->execute();
}
+ final public function getRemarkupStyleMap() {
+ $map = array(
+ 'rbw_r' => 'color: red',
+ 'rbw_o' => 'color: orange',
+ 'rbw_y' => 'color: yellow',
+ 'rbw_g' => 'color: green',
+ 'rbw_b' => 'color: blue',
+ 'rbw_i' => 'color: indigo',
+ 'rbw_v' => 'color: violet',
+ );
+
+ return $map + $this->getStyleMap();
+ }
+
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 30, 5:00 PM (5 d, 4 m ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7700547
Default Alt Text
D15848.id38185.diff (1 KB)
Attached To
Mode
D15848: Pass the new default syntax highlighting map to the remarkup engine
Attached
Detach File
Event Timeline
Log In to Comment