From 0f6bae9e4ab55a58753da24cc57fac0164b26660 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Gr=C3=BCter?= Date: Fri, 5 Aug 2022 17:33:14 +0200 Subject: [PATCH] Fix malformed _toc.yml Running jupyter-book build . with v0.13.0 fails with the following message: The Table of Contents file is malformed: toc is not a mapping: You may need to migrate from the old format, using: jupyter-book toc migrate _toc.yml -o _toc.yml After updating _toc.yml accordingly, the build succeeds. --- _toc.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_toc.yml b/_toc.yml index 85366de..bc112ba 100644 --- a/_toc.yml +++ b/_toc.yml @@ -1,6 +1,7 @@ -- file: lectures/00_images_are_arrays +format: jb-article +root: lectures/00_images_are_arrays +sections: - file: lectures/1_image_filters - file: lectures/3_morphological_operations - file: lectures/4_segmentation - file: lectures/three_dimensional_image_processing -