About Slate Blog

About Slate Blog

Jan 21 Β·
2 Min Read

Why We build it?

We love writing and sharing, and we also appreciate great internet products. So we created this minimalist blogging product, focusing on content itself, providing a smooth and pure writing and reading experience, and built on the latest technology framework to make it faster and lighter.

It also works seamlessly with Obsidian, helping you turn your notes into published posts effortlessly.

✨ Features

πŸͺœ Framework

πŸ”¨ Usage

Terminal window
# Start local server
npm run dev
# or
yarn dev
# or
pnpm dev
# Build
npm run build
# or
yarn build
# or
pnpm build

πŸ—‚ Directory Structure

- plugins/ # Custom plugins
- src/
β”œβ”€β”€ assets/ # Asset files
β”œβ”€β”€ components/ # Components
β”œβ”€β”€ content/ # Content collections
β”œβ”€β”€ helpers/ # Business logic
β”œβ”€β”€ pages/ # Pages
└── typings/ # Common types

Articles are stored in the src/content/post directory, supporting markdown and mdx formats. The filename is the path name. For example, src/content/post/my-first-post.md => https://your-blog.com/blog/my-first-post.

Configuration

Theme configuration is done through slate.config.ts in the root directory.

OptionDescriptionTypeDefault
siteFinal deployment linkstring-
titleWebsite titlestring-
descriptionWebsite descriptionstring-
langLanguagestringzh-CN
themeTheme`{ mode: β€˜auto''light'
avatarAvatarstring-
sitemapWebsite sitemap configurationSitemapOptions-
readTimeShow reading timebooleanfalse
lastModifiedShow last modified timebooleanfalse
algoliaDocsearch configuration{ appId: string, apiKey: string, indexName: string }-
followFollow subscription authentication configuration{ feedId: string, userId: string }-
footerWebsite footer configuration{ copyright: string }-

Algolia Application

  1. Deploy your site first
  2. Apply for an apiKey at algolia
  3. After successful application, configure algolia in slate.config.ts
  4. Redeploy

Follow Subscription Authentication

  1. Register a follow account
  2. Deploy your site
  3. Click the + button on follow, select RSS subscription, and enter the rss link (usually [site]/rss.xml, where site is the value of site in slate.config.ts)
  4. Redeploy

Article Frontmatter Description

OptionDescriptionTypeRequired
titleArticle titlestringYes
descriptionArticle descriptionstringNo
tagsArticle tagsstring[]No
draftWhether it’s a draft. When not provided or false, pubDate must be provided; drafts are only visible in local previewbooleanNo
pubDateArticle publication datedateNo, required when draft is false

For more details, check the src/content/config.ts file

Example

---
title: 40 questions
description: This repo maintains revisons and translations to the list of 40 questions I ask myself each year and each decade.
tags:
- Life
- Thinking
- Writing
pubDate: 2025-01-06
---

Markdown Syntax Support

In addition to standard Markdown syntax, the following extended syntax is supported:

Basic Syntax

Extended Syntax

Container syntax

Using ::: markers

:::info
This is an information prompt
:::

The result will be displayed as:

This is an information prompt

LaTeX Mathematical Formulas

Support for image captions

![Image caption](image-url)

The result will be displayed as:

Slate Blog Preview
Slate Blog Preview

Updates

Version 1.3.0

Version 1.2.0

Version 1.1.1

Version 1.1.0

Last edited Mar 20