Step 194: semantic-filtered library browser

This commit is contained in:
Bill
2026-02-10 02:18:25 -07:00
parent 331999ce14
commit 838082466b
10 changed files with 191 additions and 8 deletions

View File

@@ -79,6 +79,13 @@ private:
std::string note = "Generated using " + sym.name + " (" + sym.source + ")";
if (!spec.empty()) note += " for spec: " + spec;
if (!language.empty()) note += " in " + language;
if (!sym.tags.empty()) {
note += " | tags: ";
for (size_t i = 0; i < sym.tags.size(); ++i) {
if (i > 0) note += ", ";
note += sym.tags[i];
}
}
return note;
}