Skip to content

Commit c87b0a6

Browse files
committed
Don't always include passthroughUrl again
1 parent ccd5f2a commit c87b0a6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

templates.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ const postTemplate = (title, date, passthroughUrl, content) => {
22
const post =
33
`---
44
title: ${title}
5-
date: "${date}"
6-
${passthroughUrl ? `passthroughUrl: ${passthroughUrl}` : ''}
5+
date: "${date}"${passthroughUrl ? `passthroughUrl: ${passthroughUrl}` : ''}
76
---
87
98
${content}`

0 commit comments

Comments
 (0)