This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Goes through all the markdown files in a folder and adds the | |
yyyy-mm-dd- prefix to the filename, in the slug: in the | |
front matter | |
""" | |
#!/usr/bin/env python3 | |
import os | |
import re | |
import sys |
OlderNewer