Casper da Costa-Luis
Casper da Costa-Luis
Related #23
**Is your feature request related to a problem? Please describe.** `mkdocs` supports extra config, e.g.: ```yml mkdocs_config: extra_css: [somefile.css, somedir/another.css] extra_javascript: [js/more.js] ``` but `pydoc-markdown` doesn't copy those files over....
``` sh $ . ../bash-completion/completions/make $ make [TAB]sed: couldn't open file /dev/fd/63: No such file or directory sed: couldn't open file /dev/fd/63: No such file or directory ```
Sometimes answers are returned in a different language from the one specified. e.g: ```bash $ curl cht.sh/python/progress+meter # correctly returns python [so/q/3160699] $ curl cht.sh/python/progress+bar # incorrectly returns java [so/q/19417246]...
Option to edit a message for supported providers (e.g. slack, telegram, etc.) **solution proposed** ```python msg = notifiers.get_notifier('telegram').notify(message='Hi!', token='TOKEN', chat_id=1234) ... msg.edit(message='hello?') ``` **alternatives**: - sending multiple messages/replies - using...
- What: support writing `#parameters` as a comment at the top of a cell as an alternative way to tag - Why: it's annoying to use the `tags` mechanism, especially...
perhaps it would be nice to provide an example where injected parameters are inside a dictionary or object: ```python # parameters import argparse args = argparse.Namespace() args_dict = {} args.a...
`-p` seems to imply literal evaluation rather than raw string (`-r`), thus it should use `ast.literal_eval()` # Example ```sh papermill ... -p a 1 -r b 2 -p c '[1,...
1. rename `tqdm.write` to `tqdm.print` since it tries to do fancy `end='\n'`-type things - handle deprecation for v5 2. re-look at said fancy `end` logic 3. provide a **real** `tqdm.write`...
- allow `tqdm(iterable0) iterable1` - update tests - bump pre-commit hooks --- - fixes #1288