merge update at Jul 26, 2022

This commit is contained in:
Sevichecc 2022-08-06 18:39:48 +08:00
parent ec3227c838
commit f61521e837
45 changed files with 55 additions and 42 deletions

View file

@ -21,6 +21,9 @@ import { lex, parse as parseFence } from 'fenceparser'
import { renderCodeToHTML, runTwoSlash, createShikiHighlighter } from 'shiki-twoslash' import { renderCodeToHTML, runTwoSlash, createShikiHighlighter } from 'shiki-twoslash'
type VALUE = { [key in string | number]: VALUE } | Array<VALUE> | string | boolean | number type VALUE = { [key in string | number]: VALUE } | Array<VALUE> | string | boolean | number
// lightbox
import { Lightbox } from 'svelte-lightbox'
const remarkUraraFm = const remarkUraraFm =
() => () =>
(tree: Node<Data>, { data, filename }: { data: { fm?: Record<string, unknown> }; filename?: string }) => { (tree: Node<Data>, { data, filename }: { data: { fm?: Record<string, unknown> }; filename?: string }) => {

View file

@ -68,6 +68,7 @@
"svelte": "^3.49.0", "svelte": "^3.49.0",
"svelte-bricks": "^0.1.7", "svelte-bricks": "^0.1.7",
"svelte-check": "^2.8.0", "svelte-check": "^2.8.0",
"svelte-lightbox": "^0.6.6",
"svelte-preprocess": "^4.10.7", "svelte-preprocess": "^4.10.7",
"svelte-typeahead": "^4.2.4", "svelte-typeahead": "^4.2.4",
"tailwindcss": "^3.1.6", "tailwindcss": "^3.1.6",

View file

@ -40,6 +40,7 @@ specifiers:
svelte: ^3.49.0 svelte: ^3.49.0
svelte-bricks: ^0.1.7 svelte-bricks: ^0.1.7
svelte-check: ^2.8.0 svelte-check: ^2.8.0
svelte-lightbox: ^0.6.6
svelte-preprocess: ^4.10.7 svelte-preprocess: ^4.10.7
svelte-typeahead: ^4.2.4 svelte-typeahead: ^4.2.4
tailwindcss: ^3.1.6 tailwindcss: ^3.1.6
@ -91,6 +92,7 @@ devDependencies:
svelte: 3.49.0 svelte: 3.49.0
svelte-bricks: 0.1.7 svelte-bricks: 0.1.7
svelte-check: 2.8.0_nxvsp6sjiltnatqa6jdm4mr6zu svelte-check: 2.8.0_nxvsp6sjiltnatqa6jdm4mr6zu
svelte-lightbox: 0.6.6_svelte@3.49.0
svelte-preprocess: 4.10.7_bgntxiihuqhg5mwaa7nczjwpga svelte-preprocess: 4.10.7_bgntxiihuqhg5mwaa7nczjwpga
svelte-typeahead: 4.2.4 svelte-typeahead: 4.2.4
tailwindcss: 3.1.6 tailwindcss: 3.1.6
@ -5519,6 +5521,14 @@ packages:
svelte: 3.49.0 svelte: 3.49.0
dev: true dev: true
/svelte-lightbox/0.6.6_svelte@3.49.0:
resolution: {integrity: sha512-/iYEGykyzKNTHlCjr1xT60mqI5k2/p+I1c6sihcQpQ2QMkJbB2WQj7kmt4RYyLMR1iKHBwwJuDW4Hc86sbh07A==}
peerDependencies:
svelte: ^3.25.0
dependencies:
svelte: 3.49.0
dev: true
/svelte-preprocess/4.10.7_bgntxiihuqhg5mwaa7nczjwpga: /svelte-preprocess/4.10.7_bgntxiihuqhg5mwaa7nczjwpga:
resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==} resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==}
engines: {node: '>= 9.11.2'} engines: {node: '>= 9.11.2'}

View file

@ -10,6 +10,5 @@
"sourceMap": true, "sourceMap": true,
"strict": true, "strict": true,
"types": ["vite/client", "vite-plugin-pwa/client"] "types": ["vite/client", "vite-plugin-pwa/client"]
}, }
"include": ["src/app.d.ts"]
} }

View file

@ -1,7 +1,7 @@
--- ---
title: Overview of User Experience Design title: Overview of User Experience Design
summary: Introduction to User Experience DesignWeek1 summary: Introduction to User Experience DesignWeek1
date: 2021-11-08T10:54:40+08:00 created 2021-11-08T10:54:40+08:00
# categories: # categories:
# - UX学习笔记 # - UX学习笔记
# - Introduction to User Experience Design # - Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
--- ---
title: Requirement Gathering title: Requirement Gathering
summary: Introduction to User Experience DesignWeek2 summary: Introduction to User Experience DesignWeek2
date: 2021-11-09T22:26:49+08:00 created 2021-11-09T22:26:49+08:00
categories: categories:
- UX学习笔记 - UX学习笔记
- Introduction to User Experience Design - Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
--- ---
title: Design Alternatives title: Design Alternatives
summary: Introduction to User Experience DesignWeek3 summary: Introduction to User Experience DesignWeek3
date: 2021-11-14T11:18:45+08:00 created 2021-11-14T11:18:45+08:00
categories: categories:
- UX学习笔记 - UX学习笔记
- Introduction to User Experience Design - Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
--- ---
title: Prototyping title: Prototyping
summary: Introduction to User Experience DesignWeek4 summary: Introduction to User Experience DesignWeek4
date: 2021-11-18T21:26:41+08:00 created 2021-11-18T21:26:41+08:00
categories: categories:
- UX学习笔记 - UX学习笔记
- Introduction to User Experience Design - Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
--- ---
title: Evaluation title: Evaluation
summary: Introduction to User Experience DesignWeek5 summary: Introduction to User Experience DesignWeek5
date: 2021-11-18T22:09:49+08:00 created 2021-11-18T22:09:49+08:00
categories: categories:
- UX学习笔记 - UX学习笔记
- Introduction to User Experience Design - Introduction to User Experience Design

View file

@ -1,7 +1,7 @@
--- ---
title: JavaScript · 判断水仙花数 title: JavaScript · 判断水仙花数
summary: 用JavaScript判断水仙花数 summary: 用JavaScript判断水仙花数
date: 2022-03-03T15:07:14.533Z created 2022-03-03T15:07:14.533Z
categories: categories:
- JavaScript - JavaScript
tags: tags:

View file

@ -1,7 +1,7 @@
--- ---
title: JavaScript · 十进制数转二进制 title: JavaScript · 十进制数转二进制
summary: 用JavaScript将十进制数转二进制数 summary: 用JavaScript将十进制数转二进制数
date: 2022-03-04T14:57:48.683Z created 2022-03-04T14:57:48.683Z
draft: '' draft: ''
tags: tags:
- JavaScript - JavaScript

View file

@ -1,7 +1,7 @@
--- ---
title: Airtable · 网页剪藏 title: Airtable · 网页剪藏
summary: Airtable Web Cilpper设置 summary: Airtable Web Cilpper设置
date: 2022-03-06T05:58:29.026Z created 2022-03-06T05:58:29.026Z
categories: categories:
- 实用技巧 - 实用技巧
tags: tags:

View file

@ -1,7 +1,7 @@
--- ---
title: JavaScript · 字符串去重 title: JavaScript · 字符串去重
summary: 编码实现字符串去重 summary: 编码实现字符串去重
date: 2022-03-07T13:55:21.090Z created 2022-03-07T13:55:21.090Z
tags: tags:
- JavaScript - JavaScript
categories: categories:

View file

@ -1,7 +1,7 @@
--- ---
title: Obsidian · 网课学习笔记整理 title: Obsidian · 网课学习笔记整理
summary: 拆分整合的过程 summary: 拆分整合的过程
date: 2022-03-06T16:23:33.118Z created 2022-03-06T16:23:33.118Z
tags: tags:
- Obsidian - Obsidian
categories: categories:

View file

@ -1,7 +1,7 @@
--- ---
title: JavaScript · Caesar Cipher 凯撒加密 title: JavaScript · Caesar Cipher 凯撒加密
summary: 用JavaScrpit编码实现凯撒加密算法 summary: 用JavaScrpit编码实现凯撒加密算法
date: 2022-03-08T16:01:08.850Z created 2022-03-08T16:01:08.850Z
tags: tags:
- JavaScript - JavaScript
categories: categories:

View file

@ -1,7 +1,7 @@
--- ---
title: CSS · Tab选项卡 title: CSS · Tab选项卡
summary: 一个纯 CSS 实现的 Tab 选项卡 summary: 一个纯 CSS 实现的 Tab 选项卡
date: 2022-03-09T07:42:25.299Z created 2022-03-09T07:42:25.299Z
tags: tags:
- CSS - CSS
categories: categories:

View file

@ -1,7 +1,7 @@
--- ---
title: JavaScript · 打字机效果生成器 title: JavaScript · 打字机效果生成器
summary: 用 JavaScript 实现网页打字机效果 summary: 用 JavaScript 实现网页打字机效果
date: 2022-03-08T16:19:05.137Z created 2022-03-08T16:19:05.137Z
tags: tags:
- JavaScript - JavaScript
categories: categories:

View file

@ -1,7 +1,7 @@
--- ---
title: Forty页面仿写 title: Forty页面仿写
summary: 完成 HTML、CSS 代码编写,暂无 JavaScript summary: 完成 HTML、CSS 代码编写,暂无 JavaScript
date: 2022-03-10T08:38:17.227Z created 2022-03-10T08:38:17.227Z
preview: '' preview: ''
draft: '' draft: ''
tags: tags:

View file

@ -1,7 +1,7 @@
--- ---
title: Miniflux · 保存文章到 Pocket 以及 RSS title: Miniflux · 保存文章到 Pocket 以及 RSS
summary: 将 Miniflux 上的文章到保存到 Pocket/Instapaper,以及 RSS 相关文章和资源 summary: 将 Miniflux 上的文章到保存到 Pocket/Instapaper,以及 RSS 相关文章和资源
date: 2022-03-10T16:24:38.663Z created 2022-03-10T16:24:38.663Z
preview: '' preview: ''
draft: '' draft: ''
tags: tags:

View file

@ -2,7 +2,7 @@
title: CSS · 解决 Chrome 中小于12px的字体不显示的问题 title: CSS · 解决 Chrome 中小于12px的字体不显示的问题
lastmod: 2022-04-07T07:36:23.629Z lastmod: 2022-04-07T07:36:23.629Z
summary: 先用scale总体缩小再补上减少的宽度 summary: 先用scale总体缩小再补上减少的宽度
date: 2022-03-29T13:46:29.228Z created 2022-03-29T13:46:29.228Z
tags: tags:
- CSS - CSS
- CSS Trick - CSS Trick

View file

View file

@ -1,6 +1,6 @@
--- ---
title: CSS · Argon主题的CSS修改 title: CSS · Argon主题的CSS修改
date: 2022-01-16 14:04:17 created 2022-01-16 14:04:17
tags: tags:
- CSS - CSS
slug: free-axure-cloud slug: free-axure-cloud

View file

@ -1,6 +1,6 @@
--- ---
title: 两种免费发布Axure原型的方式 title: 两种免费发布Axure原型的方式
date: 2022-01-21 00:11:17 created 2022-01-21 00:11:17
tags: tags:
- 实用技巧 - 实用技巧
slug: free-axure-cloud slug: free-axure-cloud

View file

@ -1,6 +1,6 @@
--- ---
title: CSS · 基础笔记 title: CSS · 基础笔记
date: 2021-12-06T11:59:47+08:00 created 2021-12-06T11:59:47+08:00
slug: css-fundamental slug: css-fundamental
tags: tags:
- CSS - CSS

View file

@ -3,7 +3,7 @@ title: CSS · 三种布局方式
slug: css-layouts slug: css-layouts
tags: tags:
- CSS - CSS
date: 2022-01-13T10:07:00.000Z created 2022-01-13T10:07:00.000Z
summary: Float / Flexbox / Grid / summary: Float / Flexbox / Grid /
lastmod: 2022-05-07T05:30:20.613Z lastmod: 2022-05-07T05:30:20.613Z
--- ---

View file

@ -1,6 +1,6 @@
--- ---
title: 自建网页书签Flare title: 自建网页书签Flare
date: 2022-02-20 14:04:17 created 2022-02-20 14:04:17
tags: tags:
- Docker - Docker
- Self-hosted - Self-hosted

View file

@ -3,7 +3,7 @@ title: CSS · Reusable Grid
slug: css-grid slug: css-grid
tags: tags:
- CSS - CSS
date: 2022-01-13T10:01:44.000Z created 2022-01-13T10:01:44.000Z
summary: 可复用的CSS Grid设置 summary: 可复用的CSS Grid设置
lastmod: 2022-05-07T05:32:52.372Z lastmod: 2022-05-07T05:32:52.372Z
--- ---

View file

@ -1,6 +1,6 @@
--- ---
title: 用 docker 安装 Halo 博客 title: 用 docker 安装 Halo 博客
date: 2022-02-16 14:04:17 created 2022-02-16 14:04:17
tags: tags:
- Docker - Docker
- Self-hosted - Self-hosted

View file

@ -1,6 +1,6 @@
--- ---
title: CSS · hover时图片放大的动效 title: CSS · hover时图片放大的动效
date: 2022-01-13T16:03:47.000Z created 2022-01-13T16:03:47.000Z
slug: hover-image-scale slug: hover-image-scale
tags: tags:
- CSS Trick - CSS Trick

View file

@ -1,6 +1,6 @@
--- ---
title: HTML · 基础笔记 title: HTML · 基础笔记
date: 2021-12-06T11:59:47+08:00 created 2021-12-06T11:59:47+08:00
slug: html-notes slug: html-notes
tags: tags:
- HTML - HTML

View file

@ -1,6 +1,6 @@
--- ---
title: 什么是设计洞察 · What is Insight title: 什么是设计洞察 · What is Insight
date: 2021-10-15T15:07:14.533Z created 2021-10-15T15:07:14.533Z
tags: tags:
- Design Thinking - Design Thinking
- 翻译 - 翻译

View file

@ -4,7 +4,7 @@ slug: css-margin
tags: tags:
- CSS Trick - CSS Trick
- CSS - CSS
date: 2022-01-13T10:04:21.000Z created 2022-01-13T10:04:21.000Z
summary: 用helper class为单个按钮加margin防止元素复用时产生不必要的margin summary: 用helper class为单个按钮加margin防止元素复用时产生不必要的margin
lastmod: 2022-05-07T05:32:49.156Z lastmod: 2022-05-07T05:32:49.156Z
--- ---

View file

@ -1,6 +1,6 @@
--- ---
title: 翻译 · Material Design3 title: 翻译 · Material Design3
date: 2022-01-03 13:02:17 created 2022-01-03 13:02:17
tags: tags:
- 翻译 - 翻译
categories: categories:

View file

@ -3,7 +3,7 @@ title: CSS · Rem in CSS
slug: rem-css slug: rem-css
tags: tags:
- CSS - CSS
date: 2022-01-12T09:50:27.000Z created 2022-01-12T09:50:27.000Z
summary: CSS中的Rem是什么 summary: CSS中的Rem是什么
lastmod: 2022-05-07T05:32:42.708Z lastmod: 2022-05-07T05:32:42.708Z
--- ---

View file

@ -6,7 +6,7 @@ categories:
- 实用技巧 - 实用技巧
slug: vscode-tips slug: vscode-tips
summary: 字体/插件/设置…… summary: 字体/插件/设置……
date: 2022-01-27T13:40:28.920Z created 2022-01-27T13:40:28.920Z
lastmod: 2022-03-30T02:20:34.584Z lastmod: 2022-03-30T02:20:34.584Z
--- ---

View file

@ -1,7 +1,7 @@
--- ---
title: 《用户体验要素》- 用户体验为何如此重要 title: 《用户体验要素》- 用户体验为何如此重要
summary: 第一章笔记 summary: 第一章笔记
date: 2021-11-29T11:06:10+08:00 created 2021-11-29T11:06:10+08:00
categories: categories:
- UX学习笔记 - UX学习笔记
- 《用户体验要素》 - 《用户体验要素》

View file

@ -1,7 +1,7 @@
--- ---
title: 《用户体验要素》- 认识这些要素 title: 《用户体验要素》- 认识这些要素
summary: 第二章笔记 summary: 第二章笔记
date: 2021-12-06T11:59:47+08:00 created 2021-12-06T11:59:47+08:00
categories: categories:
- UX学习笔记 - UX学习笔记
- 《用户体验要素》 - 《用户体验要素》

View file

@ -1,6 +1,6 @@
--- ---
title: 《用户体验要素》- 战略层(产品目标和用户需求) title: 《用户体验要素》- 战略层(产品目标和用户需求)
date: 2022-01-02 13:08:29 created 2022-01-02 13:08:29
categories: categories:
- UX学习笔记 - UX学习笔记
tags: tags:

View file

@ -7,7 +7,7 @@ categories:
- 设计心理学 - 设计心理学
keywords: keywords:
- 设计心理学 - 设计心理学
date: 2021-10-20T12:28:00.000Z created 2021-10-20T12:28:00.000Z
# layout: post # layout: post
summary: 《设计心理学 1》第一章——好设计有两个特征可视性和易通性 summary: 《设计心理学 1》第一章——好设计有两个特征可视性和易通性
lastmod: 2022-04-16T12:55:08.323Z lastmod: 2022-04-16T12:55:08.323Z

View file

@ -9,7 +9,7 @@ keywords:
- 设计心理学 - 设计心理学
draft: false draft: false
# layout: post # layout: post
date: 2021-10-20T16:14:47.371Z created 2021-10-20T16:14:47.371Z
summary: 《设计心理学 1》第二章——人们如何做事当事情出错了怎么办怎么知道要做什么 summary: 《设计心理学 1》第二章——人们如何做事当事情出错了怎么办怎么知道要做什么
lastmod: 2022-04-16T12:55:05.400Z lastmod: 2022-04-16T12:55:05.400Z
--- ---

View file

@ -8,7 +8,7 @@ categories:
- 设计心理学 - 设计心理学
keywords: keywords:
- 设计心理学 - 设计心理学
date: 2021-10-20T17:08:47.371Z created 2021-10-20T17:08:47.371Z
summary: 《设计心理学 1》第三章——并非精确行为需要的所有知识都得储存在头脑里 summary: 《设计心理学 1》第三章——并非精确行为需要的所有知识都得储存在头脑里
lastmod: 2022-04-16T12:55:13.235Z lastmod: 2022-04-16T12:55:13.235Z
# layout: post # layout: post

View file

@ -7,7 +7,7 @@ categories:
- 设计心理学 - 设计心理学
keywords: keywords:
- 设计心理学 - 设计心理学
date: 2021-10-22T20:21:44.000Z created 2021-10-22T20:21:44.000Z
summary: 《设计心理学 1》第四章——遇到一个新的设备或状况设计师应如何提供重要信息以便人们知道如何操作 summary: 《设计心理学 1》第四章——遇到一个新的设备或状况设计师应如何提供重要信息以便人们知道如何操作
lastmod: 2022-04-16T12:55:16.673Z lastmod: 2022-04-16T12:55:16.673Z
# layout: post # layout: post

View file

@ -1,7 +1,7 @@
--- ---
title: 人为差错?不,拙劣的设计 title: 人为差错?不,拙劣的设计
summary: 《设计心理学 1》第五章——设计师经常严重误解人心理的局限性要求人像机器一样工作 summary: 《设计心理学 1》第五章——设计师经常严重误解人心理的局限性要求人像机器一样工作
date: 2021-10-27T20:22:17+08:00 created 2021-10-27T20:22:17+08:00
math: falase math: falase
categories: categories:
- 设计心理学 - 设计心理学

View file

@ -1,6 +1,6 @@
--- ---
title: 设计思维 title: 设计思维
date: 2021-11-03T03:49:10.353Z created 2021-11-03T03:49:10.353Z
categories: categories:
- 设计心理学 - 设计心理学
tags: tags:

View file

@ -1,7 +1,7 @@
--- ---
title: 全球商业化中的设计 title: 全球商业化中的设计
summary: 《设计心理学 1》第七章——本书的总结 summary: 《设计心理学 1》第七章——本书的总结
date: 2021-11-03T03:59:18.000Z created 2021-11-03T03:59:18.000Z
categories: categories:
- 设计心理学 - 设计心理学
tags: tags: