This PR fixes graphdoc.to_md by updating setup.py to include the markdown templates when releasing the graphdoc package.
Currently this method returns HTML. This is due to the check in render.py (at https://github.com/wallee94/graphdoc/blob/main/graphdoc/render.py#L29) failing to find the markdown templates, and therefore not loading them templates into the _jinja_env. As a result, the renderer still produces HTML.
This PR fixes
graphdoc.to_md
by updating setup.py to include the markdown templates when releasing the graphdoc package.Currently this method returns HTML. This is due to the check in render.py (at https://github.com/wallee94/graphdoc/blob/main/graphdoc/render.py#L29) failing to find the markdown templates, and therefore not loading them templates into the
_jinja_env
. As a result, the renderer still produces HTML.