This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
This is more of a git question, but I ask it here anyway because it's related to cljdoc. I'm converting the poly tool doc (see previous post) to cljdoc and it contains a lot of images. Would it be okay to store those in the same git repo together with the rest of the documentation (.adoc files in this case)? Some files change over time, but most are stable. I know it's not encouraged to store images in git, but some do it, and some don't, and it would be quite convenient to keep everything version controlled in one place.
Yeah that works nicely. If you use relative (or git repo absolute) paths cljdoc will reference the correct git versioned image. So if your images change with a new release, you'll be good and your historical docs for past releases will also be good.
Okay, cool! I have started that way, just wanted to double check.