gui: mainwindow: Use Unicode category class to extract highlight words
这个提交包含在:
		@@ -502,7 +502,7 @@ void MainWindow::makePreviews(int page)
 | 
				
			|||||||
	scaleText.chop(1);
 | 
						scaleText.chop(1);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	QVector<QString> wordsToHighlight;
 | 
						QVector<QString> wordsToHighlight;
 | 
				
			||||||
	QRegularExpression extractor(R"#("([^"]*)"|(\w+))#");
 | 
						QRegularExpression extractor(R"#("([^"]*)"|(\p{L}+))#");
 | 
				
			||||||
	for(const Token &token : this->contentSearchQuery.getTokens())
 | 
						for(const Token &token : this->contentSearchQuery.getTokens())
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		if(token.type == FILTER_CONTENT_CONTAINS)
 | 
							if(token.type == FILTER_CONTENT_CONTAINS)
 | 
				
			||||||
 
 | 
				
			|||||||
		在新工单中引用
	
	屏蔽一个用户