Fix date formatting
This commit is contained in:
@@ -6,7 +6,7 @@ description: I've got some gift suggestions for the nerds in your life!
|
|||||||
tags:
|
tags:
|
||||||
- personal
|
- personal
|
||||||
- advice
|
- advice
|
||||||
added: 2023-12-10T05:53:49.063Z
|
added: 2023-12-09T06:00:00.000Z
|
||||||
---
|
---
|
||||||
|
|
||||||
I've bookmarked various things over the past year or so of things I would get for friends, family, and myself, and I thought I'd share 'em with ya after seeing [Chris Coyier's very cool guide](https://chriscoyier.net/2023/12/06/gift-guide-2023/)! Nobody's paying me to share these, I just think these are fun.
|
I've bookmarked various things over the past year or so of things I would get for friends, family, and myself, and I thought I'd share 'em with ya after seeing [Chris Coyier's very cool guide](https://chriscoyier.net/2023/12/06/gift-guide-2023/)! Nobody's paying me to share these, I just think these are fun.
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ slug: line-break-md
|
|||||||
description: Here's how you can add single line breaks in your markdown documents!
|
description: Here's how you can add single line breaks in your markdown documents!
|
||||||
tags:
|
tags:
|
||||||
- technical
|
- technical
|
||||||
added: 2023-12-10T06:49:17.431Z
|
added: 2023-12-10T06:00:00.000Z
|
||||||
---
|
---
|
||||||
|
|
||||||
Sometimes when you write markdown, you'll write some paragraph...
|
Sometimes when you write markdown, you'll write some paragraph...
|
||||||
@@ -41,7 +41,7 @@ Like this...\
|
|||||||
...and then this.
|
...and then this.
|
||||||
```
|
```
|
||||||
|
|
||||||
This is supported in *most* markdown processors, but not all of them. Definitely check on the one you're using before you push to prod. Some processors also allow you to add a double space at the end of a line as well (truly just ` `, hit your spacebar twice), but since a lot of code editor setups trim empty spaces, I personally prefer the backslash way.
|
This is supported in _most_ markdown processors, but not all of them. Definitely check on the one you're using before you push to prod. Some processors also allow you to add a double space at the end of a line as well (truly just ` `, hit your spacebar twice), but since a lot of code editor setups trim empty spaces, I personally prefer the backslash way.
|
||||||
|
|
||||||
Have\
|
Have\
|
||||||
fun!
|
fun!
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ export default defineConfig({
|
|||||||
tags: [],
|
tags: [],
|
||||||
}),
|
}),
|
||||||
ui: {
|
ui: {
|
||||||
|
dateFormat: "MMM DD YYYY",
|
||||||
filename: {
|
filename: {
|
||||||
readonly: false,
|
readonly: false,
|
||||||
slugify: (values) => {
|
slugify: (values) => {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user