@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make Jupyter notebooks use the fast builtin Python highlighter

Summary:
Ref T13105. This is silly, but "py" and "python" end up in different places today, and "py" is ~100x faster than "python".

See also T3626 for longer-term plans on this.

Test Plan: Reloaded a Jupyter notebook, saw it render almost instantly instead of taking a few seconds.

Reviewers: mydeveloperday

Reviewed By: mydeveloperday

Maniphest Tasks: T13105

Differential Revision: https://secure.phabricator.com/D19273

+1 -1
+1 -1
src/applications/files/document/PhabricatorJupyterDocumentEngine.php
··· 196 196 $content = implode('', $content); 197 197 198 198 $content = PhabricatorSyntaxHighlighter::highlightWithLanguage( 199 - 'python', 199 + 'py', 200 200 $content); 201 201 202 202 $outputs = array();