Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign upcan't use own tempaltes with pdoc #178
Comments
This comment has been minimized.
This comment has been minimized.
|
Even interestingly, that was happening if I use --html option
|
This comment has been minimized.
This comment has been minimized.
|
using mako version '1.0.7' |
This comment has been minimized.
This comment has been minimized.
KyleKing
commented
Feb 22, 2019
•
|
I have the same issue with the latest pdoc ( Possibly related to #11 and #69 Update: should be |
KyleKing
referenced this issue
Feb 22, 2019
Open
HTML generation / carriage return lost for multi-lines docstring #179
This comment has been minimized.
This comment has been minimized.
KyleKing
commented
Feb 22, 2019
•
|
In case this helps with troubleshooting this issue: I was using Anaconda on Windows 7 with a conda-venv for Python 3.7.2 (base was 2.7.15), so I tried a fresh install of 64-bit Python 3.6.7 from python.org/ and modified my PATH to remove Anaconda. I needed to run pdoc with the absolute path based on #127 (comment). I tried variations of what I thought should work: $ which python
/c/Users/king.kyle/Python36/python
$ python --version
Python 3.6.7
$ pip install pdoc
$ python C:/Users/king.kyle/Python36/Scripts/pdoc csv --html --overwrite --template-dir templates
$ python C:/Users/king.kyle/Python36/Scripts/pdoc csv --html --overwrite --template-dir C:/Users/king.kyle/templates/
Update: |
undertherain commentedSep 27, 2018
I'm trying to use my own templates with pdoc,
I'm specifying path to templates (for starters I took existing templates from this repo and modified them slightly)
I specify
--template-diroption, but still see the result rendered with default templatesis there any way to, first of all, see if it is trying even to use new templates? If I provide some garbage as template path it still works
I'm using pdoc 0.3.2 on Python 3.6.5, Ubuntu 18.04.1