fix: 同步缺陷失败

This commit is contained in:
chenjianxing 2021-07-09 11:02:01 +08:00 committed by jianxing
parent 85502e3841
commit 12705eb83a
1 changed files with 12 additions and 0 deletions

View File

@ -234,6 +234,9 @@ public abstract class AbstractIssuePlatform implements IssuesPlatform {
// ![中心主题.png](/resource/md/get/a0b19136_中心主题.png) -> <img src="xxx/resource/md/get/a0b19136_中心主题.png"/>
String regex = "(\\!\\[.*?\\]\\((.*?)\\))";
Pattern pattern = Pattern.compile(regex);
if (StringUtils.isBlank(input)) {
return "";
}
Matcher matcher = pattern.matcher(input);
String result = "";
while (matcher.find()) {
@ -250,6 +253,9 @@ public abstract class AbstractIssuePlatform implements IssuesPlatform {
protected String removeImage(String input) {
String regex = "(\\!\\[.*?\\]\\((.*?)\\))";
if (StringUtils.isBlank(input)) {
return "";
}
Matcher matcher = Pattern.compile(regex).matcher(input);
while (matcher.find()) {
matcher.group();
@ -262,6 +268,9 @@ public abstract class AbstractIssuePlatform implements IssuesPlatform {
// <img src="xxx/resource/md/get/a0b19136_中心主题.png"/> -> ![中心主题.png](/resource/md/get/a0b19136_中心主题.png)
String regex = "(<img\\s*src=\\\"(.*?)\\\".*?>)";
Pattern pattern = Pattern.compile(regex);
if (StringUtils.isBlank(input)) {
return "";
}
Matcher matcher = pattern.matcher(input);
String result = input;
while (matcher.find()) {
@ -281,6 +290,9 @@ public abstract class AbstractIssuePlatform implements IssuesPlatform {
List<File> files = new ArrayList<>();
String regex = "(\\!\\[.*?\\]\\((.*?)\\))";
Pattern pattern = Pattern.compile(regex);
if (StringUtils.isBlank(input)) {
return new ArrayList<>();
}
Matcher matcher = pattern.matcher(input);
while (matcher.find()) {
try {