Temporarily revert the changes of fixing superscript. Version 4.0.6.

This commit is contained in:
Alex Ning 2020-08-26 23:00:19 +08:00
parent 202addef43
commit 0f03119f05
2 changed files with 4 additions and 6 deletions

View File

@ -6,8 +6,8 @@ android {
applicationId "ml.docilealligator.infinityforreddit"
minSdkVersion 21
targetSdkVersion 29
versionCode 41
versionName "4.0.5"
versionCode 42
versionName "4.0.6"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {

View File

@ -19,8 +19,6 @@ import androidx.core.graphics.drawable.DrawableCompat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Locale;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import ml.docilealligator.infinityforreddit.R;
import ml.docilealligator.infinityforreddit.SortType;
@ -36,7 +34,7 @@ public class Utils {
public static String modifyMarkdown(String markdown) {
StringBuilder regexed = new StringBuilder(markdown.replaceAll("((?<=[\\s])|^)/[rRuU]/[\\w-]+/{0,1}", "[$0](https://www.reddit.com$0)").replaceAll("((?<=[\\s])|^)[rRuU]/[\\w-]+/{0,1}", "[$0](https://www.reddit.com/$0)"));
int startIndex = 0;
/*int startIndex = 0;
Pattern pattern = Pattern.compile("\\^.+");
Matcher matcher = pattern.matcher(regexed);
@ -66,7 +64,7 @@ public class Utils {
}
}
startIndex = matcher.end() - count;
}
}*/
return regexed.toString();
}