关键字搜索
bool contains(String keyword) { if (keyword.isEmpty) return true; return content.contains(keyword) || title.contains(keyword); }