We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10d2c43 commit 11e65d6Copy full SHA for 11e65d6
1 file changed
scripts/convert-blog-posts-to-qmd.py
@@ -64,6 +64,7 @@ def _convert_markdown_to_qmd(md_path: Path) -> None:
64
65
66
def main() -> None:
67
+ """Convert blog posts from ipynb/md to qmd format."""
68
if not BLOG_ROOT.exists():
69
raise SystemExit(f"Blog directory not found: {BLOG_ROOT}")
70
@@ -75,7 +76,10 @@ def main() -> None:
75
76
for md_path in BLOG_ROOT.rglob("*.md"):
77
_convert_markdown_to_qmd(md_path)
78
- print("[II] Conversion complete. Review generated .qmd files and commit them.")
79
+ print(
80
+ "[II] Conversion complete. "
81
+ "Review generated .qmd files and commit them."
82
+ )
83
84
85
if __name__ == "__main__":
0 commit comments