Is there a way to generate a list of the yaml header titles from a list of R Markdown files with the means of R? Suppose you have two files
A.Rmd
---
title: Titel of first file
---
B.Rmd
---
title: Titel of second file
---
Then the list should look like
File |Title
-----|--------------------
A.Rmd|Titel of first file
B.Rmd|Titel of second file
Could this list be generated as R Markdown file too - preferable with links to the original files?