FIX: Error generating contents using filenames containing . (#1275)
FIXES: https://github.com/executablebooks/jupyter-book/issues/1049 The `_filename_to_title()` function runs `path.with_suffix("")`. The suffix is currently stripped in `_content_path_to_yaml()` and then again in `_filename_to_tile()`. If the filename contains a `.` the second call splits the filename at the point. Correction is: don't strip suffix in `_content_path_to_yaml(()` .
Please register or sign in to comment