mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Enable Pygments in actual source list renders
Summary: I only actually enabled it in Remarkup previously. Test Plan: Created a python diff, got syntax highlighted. Reviewed By: aran Reviewers: aran, tuomaspelkonen, jungejason CC: aran, epriestley Differential Revision: 202
This commit is contained in:
parent
881641296d
commit
fc2a2a8d09
2 changed files with 4 additions and 0 deletions
|
@ -699,6 +699,9 @@ EOSYNTHETIC;
|
||||||
$mask_force = array()) {
|
$mask_force = array()) {
|
||||||
|
|
||||||
$this->highlightEngine = new PhutilDefaultSyntaxHighlighterEngine();
|
$this->highlightEngine = new PhutilDefaultSyntaxHighlighterEngine();
|
||||||
|
$this->highlightEngine->setConfig(
|
||||||
|
'pygments.enabled',
|
||||||
|
PhabricatorEnv::getEnvConfig('pygments.enabled'));
|
||||||
|
|
||||||
$this->tryCacheStuff();
|
$this->tryCacheStuff();
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@ phutil_require_module('phabricator', 'applications/differential/storage/changese
|
||||||
phutil_require_module('phabricator', 'applications/differential/storage/diff');
|
phutil_require_module('phabricator', 'applications/differential/storage/diff');
|
||||||
phutil_require_module('phabricator', 'applications/differential/view/inlinecomment');
|
phutil_require_module('phabricator', 'applications/differential/view/inlinecomment');
|
||||||
phutil_require_module('phabricator', 'applications/files/uri');
|
phutil_require_module('phabricator', 'applications/files/uri');
|
||||||
|
phutil_require_module('phabricator', 'infrastructure/env');
|
||||||
phutil_require_module('phabricator', 'infrastructure/javelin/markup');
|
phutil_require_module('phabricator', 'infrastructure/javelin/markup');
|
||||||
phutil_require_module('phabricator', 'storage/queryfx');
|
phutil_require_module('phabricator', 'storage/queryfx');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue