Skip to content

Commit 5e99bfa

Browse files
authored
Merge pull request #1376 from deven367/master
fixes #1364
2 parents 2cd15a8 + 6c7d240 commit 5e99bfa

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+
"Create README.md from readme_nb (index.ipynb by default)"
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+
" \"Create README.md from readme_nb (index.ipynb by default)\"\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)