(file: TFile)
| 209 | } |
| 210 | |
| 211 | public async parseInlineFields(file: TFile): Promise<Property[]> { |
| 212 | const content = await this.app.vault.cachedRead(file); |
| 213 | return this.parseInlineContent(content); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Extract inline `key:: value` fields from raw note content. |
no test coverage detected