Lukas Kikuchi

Results 7 issues of Lukas Kikuchi

Fixed the issue below [#1389](https://github.com/fastai/nbdev/issues/1389)

Currently the arguments `file_glob` and `file_re` are not being used in `nbdev.serve.proc_nbs`. See the code below ```python def proc_nbs( path:str='', # Path to notebooks n_workers:int=defaults.cpus, # Number of workers force:bool=False,...

No documentation is rendered for the return type, if the function has no arguments. Compare the two functions defined below: ```python #|export def foo1( ) -> int: # Return type...

bug

- Introduces the ability to handle .py files as py:percent files within nbdev. - Does this by converting .py files to .ipynb format as an intermediate step in `NBProcessor.__init__` -...

I submitted a PR [here](https://github.com/fastai/nbdev/pull/1436) that adds support for .py files written using [py:percent ](https://jupytext.readthedocs.io/en/latest/formats-scripts.html) notation, essentially allowing for developing entirely using plain text files. I was inspired by [this](https://fgiasson.com/blog/index.php/2023/08/30/literate-programming-in-python-using-nbdev/)...

Closes https://github.com/AnswerDotAI/nbdev/issues/1498 Adds support for exporting the following plaintext formats as if they were regular `.ipynb` files: - `percent` - `light` - `sphinx` - `myst` - `pandoc` See [this](https://jupytext.readthedocs.io/en/latest/formats-scripts.html) for...

waiting for response

Add support for exporting the following plaintext formats as if they were regular `.ipynb` files: - `percent` - `light` - `sphinx` - `myst` - `pandoc` See [this](https://jupytext.readthedocs.io/en/latest/formats-scripts.html) for details on...