py5coding / py5book

juypter book repo for py5
https://py5coding.org/
64 stars 10 forks source link

Rename chapter filename for intro tutorials #57

Closed hx2A closed 1 year ago

hx2A commented 1 year ago

Can you rename the tutorials/intro_to_py5_and_python_01.ipynb file to tutorials/intro_to_py5_and_python.ipynb?

Here is what is in the _toc.yml file for the Tutorials:

- caption: Tutorials
  chapters:
  - file: tutorials/intro_to_py5_and_python
    sections:
    - glob: tutorials/intro_to_py5_and_python_*

  - file: tutorials/misc
    sections:
    - glob: tutorials/misc_*

The "chapter" needs to start with a file that must match tutorials/intro_to_py5_and_python exactly. The wildcard * is for the sections in the chapter, and the glob expression tutorials/intro_to_py5_and_python_* shouldn't also match with the notebook that starts the chapter.

hx2A commented 1 year ago

Thanks!