To limit it, if you devote the first 3 lines to title, summary, tags
You could extract the first 3 lines of each file and grep those.
If not, if they have a prefix,
title: summary: tags:
grep -E ‘title:|summary:|tags:’ | grep ‘query’
To limit it, if you devote the first 3 lines to title, summary, tags
You could extract the first 3 lines of each file and grep those.
If not, if they have a prefix,
You could grep those first then grep the output. A simple script can be built.