Now that the `kedro docs` command is removed, what...
# questions
m
Now that the
kedro docs
command is removed, what is the smoothest way to generate the documentation?
d
clone
kedro-org/kedro
make install
make build-docs
make show-docs
j
that's for Kedro's own docs, right? @Milan Jelisavcic I suppose you mean the docs for your project?
👍 1
n
kedro docs
itself is a thin wrapper of
sphinx build
command. You can pretty much do the same command and it should work. We do this as we think the ecosystem is evolving and
kedro
shouldn't hold a strong opinion of what tool you should use for building docs.
sphinx
is still good and if you keep the configuration it works well. Otherwise
mkdocs
is another popular choice out there.