Skip to content

做过的项目

81字小于1分钟

2024-10-22

双栏代码

config.ts
import type { UserConfig } from 'vuepress'

const config: UserConfig = {
  // ..
}

export default config

在线执行代码

go playground

package main

import (
  "fmt"
)

func main() {
  // 通过添加前缀 #editable 可编辑
  fmt.Println("Hello World")
}