-
It would be great if `pydocmd serve` would reload the when the config changes.
This would make the functionality on-par with `mkdocs serve`.
-
Details here: https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation
to fix change line 47 in pydocmd/__main.py__ to read:
config = yaml.load(fp, Loader=yaml.FullLoader)
-
Trying to generate docs for a module like this:
```python
# some_module.py
DEFAULT = lambda x: x
class foo:
def __init__(self, fun=DEFAULT):
pass
```
by calling:
```shell
…
-
Hi Niklas,
Given an enumeration class like
```
class PetType(enum.Enum):
""" Enumeration to identify possible pets
"""
DOG = 0
CAT = 1
MOUSE = 2
```
Output from …
-
So when I add images to the readme.md with e.g.
``
they are correctly rendered on the repo github page. However, in the generated docs the links/images seem to broken? Is this a feature we can …
-
Right now, README.md of repo describes how to build documentation using MkDocs and pydocmd.
I think some version of basic documentation should be available directly from the repo's README.md (wit…
-
It would be nice if Sphinx (reStructure Text) syntax could be converted sot that `:meth:`func_name``would be displayed as code. It must not necessarily link to the function, but it would be nice to ha…
-
From the README: "The [Developer Interface](https://www.encode.io/httpx/api/) provides a comprehensive API reference.".
I'll be blunt: I'm not even sure its useful in its current form, let alone co…
-
According to PEP 257 you can add string literals immediately after a simple assignment at the top level of a module, class, or init.
```
class Foo(object):
velocity = 1
"""Foo's initial velo…
-
If I have an argument to a function that is a custom type using the new Python 3 type annotations, e.g.
```python
from typing import NewType
NodeID = NewType('NodeID', str)
```
Currently, `py…
ghost updated
5 years ago