perf: 读取layout时 忽略#号开头文本

This commit is contained in:
octopus_yan 2024-11-18 17:36:33 +08:00
parent cb5e0229ff
commit 3cb5637972

View File

@ -307,11 +307,14 @@ public class PBOUtil {
if (StringUtils.isNoneEmpty(line) && matcher.matches()) {
// 原文
String original = matcher.group(1);
// 开始下标
Integer startIndex = line.indexOf(original);
// 添加单词
if (original.length() > 1) {
wordItems.add(new WordItem(file, lines.get(), startIndex, original, ""));
if (!original.startsWith("#")) {
// 开始下标
Integer startIndex = line.indexOf(original);
// 添加单词
if (original.length() > 1) {
wordItems.add(new WordItem(file, lines.get(), startIndex, original, ""));
}
}
}