summaryrefslogtreecommitdiff
path: root/client/docgen/docgen.cc
diff options
context:
space:
mode:
Diffstat (limited to 'client/docgen/docgen.cc')
-rw-r--r--client/docgen/docgen.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/docgen/docgen.cc b/client/docgen/docgen.cc
index e5a8bff..ee5b8f4 100644
--- a/client/docgen/docgen.cc
+++ b/client/docgen/docgen.cc
@@ -145,7 +145,8 @@ int main(int argc, char *argv[])
QStringList l = dir.entryList(QDir::Files);
foreach(QString file, l) {
Doc doc = parse(QString(INPUT) + "/" + file);
- docs[doc.name] = doc;
+ if(doc.title != "" || doc.tag != "")
+ docs[doc.name] = doc;
}
writeIndex(docs);