Skip to content

Commit 9cf56d3

Browse files
committed
fixes #1364
1 parent 2cd15a8 commit 9cf56d3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

nbdev/quarto.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ def _save_cached_readme(cache, cfg):
251251
def nbdev_readme(
252252
path:str=None, # Path to notebooks
253253
chk_time:bool=False): # Only build if out of date
254+
"Generate README.md from index.ipynb"
254255
cfg = get_config()
255256
path = Path(path) if path else cfg.nbs_path
256257
if chk_time and _readme_mtime_not_older(cfg.config_path/'README.md', path/cfg.readme_nb): return

nbs/api/14_quarto.ipynb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -476,6 +476,7 @@
476476
"def nbdev_readme(\n",
477477
" path:str=None, # Path to notebooks\n",
478478
" chk_time:bool=False): # Only build if out of date\n",
479+
" \"Generate README.md from index.ipynb\"\n",
479480
" cfg = get_config()\n",
480481
" path = Path(path) if path else cfg.nbs_path\n",
481482
" if chk_time and _readme_mtime_not_older(cfg.config_path/'README.md', path/cfg.readme_nb): return\n",

0 commit comments

Comments
 (0)