rename_post_dir {distill} | R Documentation |
Rename a blog post directory
Description
Rename a blog post directory, by default using the title and date specified within the post's front matter.
Usage
rename_post_dir(post_dir, slug = "auto", date_prefix = "auto")
Arguments
post_dir |
Path to post directory |
slug |
Post slug (directory name). Automatically computed from title if not provided. |
date_prefix |
Date prefix for post. Defaults to the post's date
field (or the current date if there is none). Pass |
Note
This function must be called from with a working directory that is within a Distill website.
Examples
## Not run:
library(distill)
rename_post_dir("_posts/2020-09-12-my-post")
rename_post_dir("_posts/2020-09-12-my-post", date_prefix = "9/15/2020")
## End(Not run)
[Package distill version 1.6 Index]