Skip to content

Commit 35a21e9

Browse files
authored
Revert "Adding fix for filenames sentence casing (#122)" (#123)
This reverts commit d845153.
1 parent d845153 commit 35a21e9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/scripts/notebook_to_mdx.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,8 +401,8 @@ def convert_notebook_to_mdx(
401401
mdx_parts.append("```")
402402
mdx_parts.append("")
403403

404-
# Generate output filename (underscores to dashes, lowercase)
405-
output_name = notebook_path.stem.replace("_", "-").lower() + ".mdx"
404+
# Generate output filename (underscores to dashes)
405+
output_name = notebook_path.stem.replace("_", "-") + ".mdx"
406406
output_path = output_dir / output_name
407407

408408
# Ensure output directory exists

0 commit comments

Comments
 (0)