Adding alias script
This commit is contained in:
parent
e09b635164
commit
3d13813a94
3
.gitignore
vendored
3
.gitignore
vendored
@ -19,3 +19,6 @@ Cargo.lock
|
|||||||
.obsidian/themes
|
.obsidian/themes
|
||||||
.obsidian/appearance.json
|
.obsidian/appearance.json
|
||||||
.obsidian/workspace.json
|
.obsidian/workspace.json
|
||||||
|
|
||||||
|
# Python
|
||||||
|
.venv
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -22,5 +22,6 @@
|
|||||||
"*.scss.liquid": "liquid-scss",
|
"*.scss.liquid": "liquid-scss",
|
||||||
"_headers": "plaintext",
|
"_headers": "plaintext",
|
||||||
"_redirects": "plaintext",
|
"_redirects": "plaintext",
|
||||||
}
|
},
|
||||||
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
|
||||||
}
|
}
|
11
.vscode/tasks.json
vendored
11
.vscode/tasks.json
vendored
@ -23,6 +23,17 @@
|
|||||||
"--open"
|
"--open"
|
||||||
],
|
],
|
||||||
"problemMatcher": []
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Initialize Python venv",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "python3",
|
||||||
|
"args": [
|
||||||
|
"-m",
|
||||||
|
"venv",
|
||||||
|
".venv"
|
||||||
|
],
|
||||||
|
"problemMatcher": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
python-frontmatter
|
63
scripts/fix_md_file_aliases.py
Normal file
63
scripts/fix_md_file_aliases.py
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import argparse
|
||||||
|
import sys
|
||||||
|
import re
|
||||||
|
import frontmatter
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
BLOG_POST_RE = re.compile(r"^\d{4}-\d+-\d+-(.*)\.md$")
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
# Handle program arguments
|
||||||
|
ap = argparse.ArgumentParser(
|
||||||
|
description="Fixes the `aliases` field in the front matter of markdown files"
|
||||||
|
)
|
||||||
|
ap.add_argument(
|
||||||
|
"--root",
|
||||||
|
type=Path,
|
||||||
|
default=Path(__file__).parent.parent / "content" / "blog",
|
||||||
|
help="The root directory to search for markdown files",
|
||||||
|
)
|
||||||
|
args = ap.parse_args()
|
||||||
|
|
||||||
|
# Find all markdown files
|
||||||
|
md_files = list(args.root.glob("**/*.md"))
|
||||||
|
print(f"Found {len(md_files)} markdown files")
|
||||||
|
|
||||||
|
# Handle each file
|
||||||
|
for file in md_files:
|
||||||
|
print(f"Processing: {file}")
|
||||||
|
|
||||||
|
# Determine what the alias path should be
|
||||||
|
title_matches = BLOG_POST_RE.match(file.name)
|
||||||
|
if not title_matches:
|
||||||
|
print("Skipping file, not a blog post")
|
||||||
|
continue
|
||||||
|
|
||||||
|
title = title_matches.group(1)
|
||||||
|
correct_alias = f"/blog/{title.lower()}"
|
||||||
|
print("Correct alias:", correct_alias)
|
||||||
|
|
||||||
|
# Load and parse the frontmatter
|
||||||
|
post = frontmatter.load(file)
|
||||||
|
|
||||||
|
# Get the list of aliases
|
||||||
|
aliases = post.metadata.get("aliases", [])
|
||||||
|
|
||||||
|
# If the alias is already correct, skip it
|
||||||
|
if correct_alias in aliases:
|
||||||
|
print("Found correct alias")
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Otherwise, add the correct alias
|
||||||
|
aliases.append(correct_alias)
|
||||||
|
|
||||||
|
# Write out the new frontmatter
|
||||||
|
post.metadata["aliases"] = aliases
|
||||||
|
frontmatter.dump(post, file)
|
||||||
|
|
||||||
|
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
sys.exit(main())
|
Loading…
x
Reference in New Issue
Block a user