Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15437695
D15847.id38175.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
D15847.id38175.diff
View Options
diff --git a/src/markup/engine/remarkup/blockrule/PhutilRemarkupCodeBlockRule.php b/src/markup/engine/remarkup/blockrule/PhutilRemarkupCodeBlockRule.php
--- a/src/markup/engine/remarkup/blockrule/PhutilRemarkupCodeBlockRule.php
+++ b/src/markup/engine/remarkup/blockrule/PhutilRemarkupCodeBlockRule.php
@@ -132,22 +132,33 @@
$name_header = null;
if ($this->getEngine()->isHTMLMailMode()) {
+ $map = $this->getEngine()->getConfig('phutil.codeblock.style-map');
+
+ if ($map) {
+ $raw_body = id(new PhutilPygmentizeParser())
+ ->setMap($map)
+ ->parse((string)$code_body);
+ $code_body = phutil_safe_html($raw_body);
+ }
+
+ $style_rules = array(
+ 'padding: 12px;',
+ 'background: rgba(71, 87, 120, 0.08);',
+ 'color: #000000;',
+ 'overflow: auto;',
+ 'border-radius: 3px;',
+ 'display: inline-block;',
+ );
+
$header_attributes = array(
- 'style' => 'padding: 6px 8px;
- background: #fdf5d4;
- color: rgba(0,0,0,.75);
- font-weight: bold;
- display: inline-block;
- border-top: 1px solid #f1c40f;
- border-left: 1px solid #f1c40f;
- border-right: 1px solid #f1c40f;
- margin-bottom: -1px;',
+ 'style' => implode(' ', $style_rules),
);
} else {
$header_attributes = array(
'class' => 'remarkup-code-header',
);
}
+
if ($options['name']) {
$name_header = phutil_tag(
'div',
@@ -161,9 +172,9 @@
}
$attributes = array(
- 'class' => $class,
- 'data-code-lang' => $options['lang'],
- 'data-sigil' => 'remarkup-code-block',
+ 'class' => $class,
+ 'data-code-lang' => $options['lang'],
+ 'data-sigil' => 'remarkup-code-block',
);
return phutil_tag(
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 26, 9:02 PM (1 w, 3 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7724004
Default Alt Text
D15847.id38175.diff (1 KB)
Attached To
Mode
D15847: When rendering Remarkup codeblocks, allow calling engines to provide a style map
Attached
Detach File
Event Timeline
Log In to Comment