Opengist Logo 清羽飞扬の代码片段

Explore

  • All gists
  • Topics
  • Users
个人主页 站长博客
Give feedback on the new UI Powered by Opengist ⋅ 31ms

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Login Register
Allen2030

Allen2030

Joined 6 months ago

All gists 2
Recently created Least recently created Recently updated Least recently updated
Allen2030

Allen2030 / Astro前端获取Ech0信息

Last active 3 months ago 信息获取

Astro-theme-fuwari的Ech0说说获取参数

0 0 1
1 // Ech0 API 工具函数
2
3 interface EssayData {
4 id: number;
5 content: string;
6 time: string;
7 tags: string[];
8 images?: string[];
9 }
Allen2030

Allen2030 / 对fuwari主题的Twikoo评论区样式修复

Last active 3 months ago Twikoo样式修复

Astro-theme-fuwari的Twikoo评论区样式修复

0 0 1
1 ---
2 interface Props {
3 path: string;
4 }
5
6 import { commentConfig } from "@/config";
7
8 const config = {
9 el: "#twikoo",
10 path: Astro.props.path,