Explicit path in documentation (#64)

This commit is contained in:
Yash Mehrotra
2021-08-30 17:58:35 +05:30
committed by GitHub
parent acf06d3488
commit b4b27826c9

View File

@@ -22,7 +22,7 @@ This is the default blog post type which will be shown in your "Posts" section a
title: "Hello, world!" title: "Hello, world!"
date: 2021-01-01 date: 2021-01-01
description: "A blog post" description: "A blog post"
image: "path/to/image.png" image: "/path/to/image.png"
type: "post" type: "post"
tags: ["blog"] tags: ["blog"]
--- ---
@@ -38,7 +38,7 @@ We introduced this type to distinguish between blog posts and normal markdown pa
```markdown ```markdown
--- ---
title: "Hello, world!" title: "Hello, world!"
image: "path/to/image.png" image: "/path/to/image.png"
type: "page" type: "page"
--- ---
@@ -124,7 +124,7 @@ We make sure your pages are social media ready.
```markdown ```markdown
--- ---
title: "Hello, world!" title: "Hello, world!"
image: "path/to/image.png" image: "/path/to/image.png"
--- ---
``` ```