Hey, congrats on a very cool project!
I'm creating a plugin to allow commenting on pages. My goal is to use docmd as a way to view and discuss on internal docs.
I have a first version implemented using SQLite.
But I was thinking that it would be cool if the markdown remained the source of truth. That way we don't even need SQLite. In this scenario comments are added to the markdown file
But... I still need a separate server for updating the file. So I was wandering... Would a live-edit mode something that you would include in the project?
If we had an API that allowed sending updated content to modify the file via docmd, then I wouldn't need another server for that. Note that I'm only considering this running in a trusted context for now. Adding something like this to a deployed site would required a lot of thought. But allowing PUT on page URLs only when running live-edit ordev , not so much
Hey, congrats on a very cool project!
I'm creating a plugin to allow commenting on pages. My goal is to use docmd as a way to view and discuss on internal docs.
I have a first version implemented using SQLite.
But I was thinking that it would be cool if the markdown remained the source of truth. That way we don't even need SQLite. In this scenario comments are added to the markdown file
But... I still need a separate server for updating the file. So I was wandering... Would a
live-editmode something that you would include in the project?If we had an API that allowed sending updated content to modify the file via docmd, then I wouldn't need another server for that. Note that I'm only considering this running in a trusted context for now. Adding something like this to a deployed site would required a lot of thought. But allowing
PUTon page URLs only when runninglive-editordev, not so much