Merge pull request #574 from scria1000/patch-1

Correct typo in replaceAll
This commit is contained in:
Docile-Alligator 2021-12-09 19:38:14 +08:00 committed by GitHub
commit e8e4340562
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,12 +80,12 @@ public final class Utils {
String regexed = REGEX_PATTERN[0].matcher(markdown).replaceAll("[$0](https://www.reddit.com$0)");
regexed = REGEX_PATTERN[1].matcher(regexed).replaceAll("[$0](https://www.reddit.com/$0)");
regexed = REGEX_PATTERN[2].matcher(regexed).replaceAll("^");
regexed = REGEX_PATTERN[3].matcher(regexed).replaceAll("$0");
regexed = REGEX_PATTERN[4].matcher(regexed).replaceAll("$0");
regexed = REGEX_PATTERN[5].matcher(regexed).replaceAll("$0");
regexed = REGEX_PATTERN[6].matcher(regexed).replaceAll("$0");
regexed = REGEX_PATTERN[7].matcher(regexed).replaceAll("$0");
regexed = REGEX_PATTERN[8].matcher(regexed).replaceAll("$0");
regexed = REGEX_PATTERN[3].matcher(regexed).replaceAll("$0 ");
regexed = REGEX_PATTERN[4].matcher(regexed).replaceAll("$0 ");
regexed = REGEX_PATTERN[5].matcher(regexed).replaceAll("$0 ");
regexed = REGEX_PATTERN[6].matcher(regexed).replaceAll("$0 ");
regexed = REGEX_PATTERN[7].matcher(regexed).replaceAll("$0 ");
regexed = REGEX_PATTERN[8].matcher(regexed).replaceAll("$0 ");
//return fixSuperScript(regexed);
// We don't want to fix super scripts here because we need the original markdown later for editing posts