···991010## Basic Commands
11111212-- `pnpm new <title>` - Create a new post (use `_title` for drafts)
1212+- `pnpm new <title` - Create a new post (use `_title` for drafts)
1313- `pnpm update-theme` - Update the theme to the latest version
14141515## Main Files & Directories
···9191title: 'Post Title'
9292pubDate: '2025-07-10'
9393---
9494+```
9595+9696+---
9797+9898+## Syntax Highlighting
9999+100100+You can configure the theme via `shikiConfig` in `astro.config.ts`.
101101+102102+For more details: [Syntax Highlighting | Astro Docs](https://docs.astro.build/en/guides/syntax-highlighting/)
103103+104104+```ts
105105+import { defineConfig } from 'astro/config'
106106+107107+export default defineConfig({
108108+ markdown: {
109109+ shikiConfig: {
110110+ light: 'github-light',
111111+ dark: 'github-dark',
112112+ wrap: false
113113+ }
114114+ }
115115+})
94116```
9511796118---