Closed
Description
Currently, clog creates a markdown file by default. As discussed in #57, I think it'd make sense if writers could be swapped out.
This raises my next question: Unix commands usually write to stdout by default. If we implement a writer abstraction, so we can plug more into clog, we shouldn't prefer one over the other. Which brings me to the point, that it might be better if clog
writes to stdout by default.
Of course, this adds the complexity that you always have to provide a writer option in case you don't want to write to stdout, but this is how most/all UNIX commands work.
Thoughts on this?