We want to use distill for meeting notes and internal reports and use "blog" variant of distillfor this. All the posts are in the _posts directory of the same github repo.
Is there a way to implement the edit option which is implemented in bookdown (see below)
edit : a link that collaborators can click to edit the Rmd source document of the current page; this was designed primarily for GitHub repositories, since it is easy to edit arbitrary plain-text files on GitHub even in other people’s repositories (if you do not have write access to the repository, GitHub will automatically fork it and let you submit a pull request after you finish editing the file). This link should have %s in it, which will be substituted by the actual Rmd filename for each page.
In other words; we would like each blogpost to have a "edit" button which forwards the user to the edit mode of the appropriate Rmd file (https://github.com/user/repo/edit/branch/path/to/rmd-file.Rmd).
Where would I need to start to implement this myself (if it does not already exist)