diff --git a/common/parse_html.js b/common/parse_html.js
index 3a4e480..951871f 100644
--- a/common/parse_html.js
+++ b/common/parse_html.js
@@ -29,10 +29,10 @@ var parsehtml = function(file, callback) {
var folder, tag;
folder = $(ee).prev();
tag = folder.text().replace(/(^\s*)|(\s*$)/g, '').replace(/\s+/g, ' ');
- if (allTags.indexOf(tag) == -1) {
- allTags.push(tag);
- }
if (tag != "Bookmarks" && tag != "书签栏") {
+ if (allTags.indexOf(tag) == -1) {
+ allTags.push(tag);
+ }
return tags.push(tag);
}
});