1049 字
5 分钟
Shirone 写作与使用指南

欢迎使用 Shirone(白音)——一个围绕 Astro 7、Svelte 5 与 Material 3 Expressive (M3E) 设计系统打造的、富有表现力的动画风格博客主题。
本指南将带你了解文章创建、frontmatter 规范、目录结构,以及完整的内置 Markdown 与 MDX 扩展。
1. 创建新文章
你可以使用内置的 CLI 命令快速创建一篇带有标准 frontmatter 的新文章:
# Create a single-file postpnpm new-post my-first-post
# Or create a post in a sub-directorypnpm new-post guides/getting-started新创建的文件会被放入 src/content/posts/。
2. frontmatter 规范
每篇 Markdown(.md)或 MDX(.mdx)文章都以一个定义其元数据的 YAML frontmatter 块开头。
示例
---title: "Exploring Material 3 Expressive Design"published: 2026-08-26updated: 2026-08-27publishedAt: 2026-08-26T10:00:00+08:00updatedAt: 2026-08-27T09:30:00+08:00pinned: truedescription: "A deep dive into dynamic HCT color science and fluid transitions in Shirone."image: "./cover.webp"tags: [M3E, Design, Frontend]category: Guidesdraft: falsecomment: true---支持的 frontmatter 字段
| 字段 | 类型 | 必填 | 说明 |
|---|---|---|---|
title | string | 是 | 文章的主标题。 |
published | Date | 是 | 发布日期,格式为 YYYY-MM-DD。 |
publishedAt | Date | 否 | 精确的发布时刻,用于为同一天发布的文章排序。它必须落在所配置站点时区的 published 日期内。 |
updated | Date | 否 | 最后更新日期。填写后会显示更新提示徽章。 |
updatedAt | Date | 否 | 供订阅源和机器可读元数据使用的精确更新时刻。必须与 updated 成对出现。 |
pinned | boolean | 否 | 将文章置顶到文章列表顶部(默认:false)。 |
description | string | 否 | 显示在文章卡片、搜索结果和 OpenGraph 元数据中的文章摘要。 |
image | string | 否 | 封面图片路径。支持相对路径(./cover.webp)、公共路径(/images/cover.jpg)或远程 URL。 |
tags | string[] | 否 | 标签名称数组,用于分类筛选和标签云。 |
category | string | 否 | 用于分类索引的主分类名称。 |
draft | boolean | 否 | 标记为草稿。草稿文章在生产构建(pnpm build)期间会被隐藏。 |
comment | boolean | 否 | 为这篇文章单独开关评论区(默认:true)。 |
lang | string | 否 | 语言代码(例如 en、zh_CN、ja),在与站点默认语言不同时使用。 |
3. 文章加密
Shirone 提供客户端文章加密。对于私密日志或受限文章,可在 frontmatter 中指定密码:
---title: "Private Research Notes"published: 2026-08-26encrypted: truepassword: "your-secret-passphrase"passwordHint: "Favorite anime character"hideHomeContent: true---encrypted:设为true以启用加密;password:解锁文章所需的口令字符串或数字;passwordHint:显示在密码输入框上方的可选提示;hideHomeContent:在首页隐藏字数和内容预览,以防数据泄露。
4. 组织文章文件
Shirone 同时支持基于文件夹的共存布局和单文件布局:
文件夹结构(推荐用于本地资源)
把文章与其媒体文件放在一起,可以让资源管理变得简单直观:
src/content/posts/├── my-great-post/│ ├── index.md <-- Post content│ ├── cover.webp <-- Cover image (image: "./cover.webp")│ └── diagram.png <-- Inline illustration referenced in markdown单文件结构(轻量随笔)
src/content/posts/├── hello-world.md└── quick-thoughts.md5. 丰富的 Markdown 与 MDX 扩展
Shirone 开箱即用地内置了现代 Markdown 扩展:
5.1 提示块
使用容器指令来编写说明、提示、警告和警示:
:::tipUse admonition containers to highlight key takeaways or best practices.:::
:::warningUse warning containers to signal potential pitfalls or breaking changes.:::5.2 GitHub 仓库卡片
使用指令语法嵌入实时且样式精美的 GitHub 仓库卡片:
::github{repo="LyraVoid/Shirone"}5.3 Expressive Code 代码块
增强的代码块提供语法高亮、文件名徽章、行号以及选择性行高亮:
// Dynamic HCT color token derivationimport { argbFromHex, themeFromSourceColor } from "@material/material-color-utilities";
const theme = themeFromSourceColor(argbFromHex("#f472b6"));console.log("Primary color token:", theme.schemes.light.primary);5.4 数学排版(KaTeX)
直接在 Markdown 中渲染优雅的 LaTeX 数学记号:
- 行内公式: 或欧拉公式 。
- 块级公式:
5.5 Mermaid 图表
使用纯文本创建流程图、时序图和架构图:
sequenceDiagram
autonumber
actor Visitor as Visitor
participant Page as Shirone Page
participant Swup as Swup Container
participant Audio as Persistent Shell
Visitor->>Page: Click Navigation Link
Page->>Swup: Trigger Seamless Transition
Swup->>Page: Replace #swup-container
Note over Audio: Background music plays continuously
Page-->>Visitor: New Page Rendered5.6 图片画廊与 Fancybox 灯箱
图片会自动集成 Fancybox,支持无损缩放、平移手势和全屏预览:
6. 后续步骤与自定义
- 站点配置:在
src/config/siteConfig.ts和src/config/README.md中了解全局设置。 - 设计令牌:在
DESIGN.md和docs/m3e-standard.md中探索令牌与配色。 - 反馈与社区:在 GitHub Issues 分享你的想法和问题。
分享文章
生成精美分享图或复制链接,与更多人分享本文。
继续阅读
换条路线
从其他文章中稳定抽取
最后更新于 ,距今已过 7 天
部分内容可能已过时