Adding links to markdown files based on a CSV file

Add links to markdown files based on a CSV file

Add links to markdown files based on a CSV file This script allows you to add links to multiple markdown files based on a CSV file of key phrases and their corresponding links. Requirements Python 3.x The markdown files should be in the same directory as the script The CSV file should have the following format: Usage Save the script below in the same directory as your markdown files. Create a CSV file with your key phrases and corresponding links....

February 9, 2023 · 1 min

Adding Dates to Frontmatter in Increments with Python

Introduction This script is for adding dates to frontmatter of multiple .md files in a directory. The script will read the contents of each .md file in the directory, look for the frontmatter, and add a date field in iso format. The date field will be in incremental order, meaning the first file processed will have the earliest date and the last file processed will have the latest date. This is useful for file management when you need to keep track of when files were added or processed....

February 7, 2023 · 1 min
a screenshot of the Image Processing Script in action

The tool I made and use for quick web-ready images: Image Processing Script - Resize and Convert Images to Webp

Image Processing Script - Resize and Convert Images to Webp Do you have a lot of images that need resizing and converting to webp format? Then look no further, as this Image Processing Script is here to help. With its simple yet effective approach, this script can process images in a folder called “processing”, resize them to a width of 720 pixels, and save them as webp format in a new folder called “img-output”....

January 31, 2023 · 2 min

Increment Date Adder - Step by Step

Introduction This Python script is designed to add incremental dates to the frontmatter of multiple markdown files. The script will iterate through the files in a specified directory, incrementing the date in the frontmatter by a specified step (in days). The script will then rename the file to indicate that the dates have been added. How to Use Copy the markdown files you want to add incremental dates to into a directory called /add-dates/....

November 7, 2022 · 2 min