diff options
Diffstat (limited to 'lib/getPost.ts')
-rw-r--r-- | lib/getPost.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/getPost.ts b/lib/getPost.ts new file mode 100644 index 0000000..2555215 --- /dev/null +++ b/lib/getPost.ts @@ -0,0 +1,19 @@ +import { parsePost } from "./parsePost"; +import { Post } from "./interfaces"; + +interface getPostArgument { + year: string; + month: string; + day: string; + title: string; +} + +export function getPost( + { year, month, day, title }: getPostArgument, + path: string +): Post { + const filePath = `${path}/${year}/${month}/${day}/${title}.md`; + + const post = parsePost(filePath); + return post; +} |