diff --git a/src/services/in_app_help.ts b/src/services/in_app_help.ts index 803fb57dd..6e8aefb61 100644 --- a/src/services/in_app_help.ts +++ b/src/services/in_app_help.ts @@ -40,6 +40,13 @@ function parseNoteMeta(noteMeta: NoteMeta, docNameRoot: string): HiddenSubtreeIt attributes: [] }; + // Handle attributes + for (const attribute of noteMeta.attributes ?? []) { + if (attribute.name === "iconClass") { + item.attributes?.push(attribute); + } + } + // Handle text notes if (noteMeta.type === "text" && noteMeta.dataFileName) { const docPath = `${docNameRoot}/${path.basename(noteMeta.dataFileName, ".html")}`