I'm trying to create a website which will let me log meetings with people. I want it to be able to update a table on a .md file which exists in a github repository each time I click the submit button.
e.g. In the github repository there will be this table:
Date | Present | Discussed |
---|---|---|
19/04/2021 | Tony Stark | Penguins |
And then on a website which I will host on my domain name, I will fill out a form with the content I want to put in the new row. When I click submit, the form will send the data to the .md file and update the table with the content of the new row.
Is there some line of code / querying language which will let me update the table on github when I click the submit button?