What are some ideas to collaborate on a single Den...
# questions
s
What are some ideas to collaborate on a single Dendron document? Use case: - A stranger and I want to collaborate on a document - We both use VS Code (and Dendron!) - Need ability for asynchronous edits (no VS Code Live stuff) because of different schedules/timezones/etc. Is the only current method to spin up a GitHub/GitLab/etc repo and manage all that overhead?
l
If you're both using VS Code itself and not a re-packaging of it (e.g. Code - OSS or VSCodium) you could give Live Share a shot. In that scenario one of you hosts a sharing session and the other can have read/write access as a collaborator
You would probably want to check the notes into some shared repository for when the host goes offline, though, as the files are only updated on the host's machine
s
Thanks @User . I think you're right. We have the requirement to perform async edits, so Live Share is a no-go. Just talking out loud here... - Wouldn't it be cool, if user A (me) could package a Markdown file in the form of a "link" to user B (my collaborator) that contained the Markdown text content in the link itself? - (minus any images) - When user B clicks the URL, VS Code with Dendron opens the file; User can add/edit Markdown. - When complete, user B "packages" the document in a URL and shares with user A, etc, etc Check the link below (truncated, exceeds Discord msg length). The link itself has all the the entire .dot Graph contained!
Copy code
https://edotor.net/?engine=dot#%2F*%20created%20with%20ERDot%20%3C%20https%3A%2F%2Fgithub.com%2Fehne%2FERDot%20%3E%20*%2F%0Adigraph%20G%20%7B%0A%20%20%20%20graph%20%5B%0A%20%20%20%20%20%20%20%20nodesep%3D0.5%3B%0A%20%20%20%20%20%20%20%20rankdir%3D%22LR%22%3B%0A%20%20%20%20%20%20%20%20cencentrate%3Dtrue%3B%0A%20%20%20%20%20%20%20%20splines%3D%22spline%22%3B%0A%20%20%20%20%20%20%20%20fontname%3D%22Helvetica%22%3B%0A%20%20%20%20%20%20%20%20pad%3D%220.2%2C0.2%22%2C%0A%20%20%20%20%20%20%20%20label%3D%22%22%2C%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%5D%3B%0A%20%20%20%20%0A%20%20%20%20node%20%5Bshape%3Dplain%2C%20fontname%3D%22Helvetica%22%5D%3B%0A%20%20%20%20edge%20%...