@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.

Remove redundant restructured text entry in default Paste highlighting options

Summary: Fixes T10217. This extra entry is just a mistake because of `rst` + `rest` both being valid suffixes. We don't need both entries.

Test Plan: Edited a paste, only saw one entry in dropdown for restructured text.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10217

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

+1 -2
+1 -2
src/applications/config/option/PhabricatorSyntaxHighlightingConfigOptions.php
··· 102 102 'python' => 'Python', 103 103 'rainbow' => 'Rainbow', 104 104 'remarkup' => 'Remarkup', 105 - 'rest' => 'reStructuredText', 105 + 'rst' => 'reStructuredText', 106 106 'robotframework' => 'RobotFramework', 107 - 'rst' => 'reStructuredText', 108 107 'ruby' => 'Ruby', 109 108 'sql' => 'SQL', 110 109 'tex' => 'LaTeX',