mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 05:12:41 +01:00
Don't trim remarkup corpora before summarizing
Summary: Currently, lists like this: ``` - a - b - c ``` ...get trimmed before summarization and end up looking like this after summarization: ``` - a - b - c ``` This produces the summary artifacts (first item at wrong indent level): {F399841} Instead, don't trim. This produces better summaries. Test Plan: Saw a better summary of a list. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D12794
This commit is contained in:
parent
51facbabba
commit
75fc4e763a
1 changed files with 1 additions and 1 deletions
|
@ -586,7 +586,7 @@ final class PhabricatorMarkupEngine {
|
||||||
// - Hopefully don't return too much text. We don't explicitly limit
|
// - Hopefully don't return too much text. We don't explicitly limit
|
||||||
// this right now.
|
// this right now.
|
||||||
|
|
||||||
$blocks = preg_split("/\n *\n\s*/", trim($corpus));
|
$blocks = preg_split("/\n *\n\s*/", $corpus);
|
||||||
|
|
||||||
$best = null;
|
$best = null;
|
||||||
foreach ($blocks as $block) {
|
foreach ($blocks as $block) {
|
||||||
|
|
Loading…
Reference in a new issue