File tree Expand file tree Collapse file tree 9 files changed +494
-0
lines changed Expand file tree Collapse file tree 9 files changed +494
-0
lines changed Original file line number Diff line number Diff line change
1
+ .DS_Store
2
+ node_modules
3
+ pnpm-lock.yaml
4
+ .vitepress /cache
Original file line number Diff line number Diff line change
1
+ import { defineConfig } from 'vitepress'
2
+
3
+ // https://vitepress.dev/reference/site-config
4
+ export default defineConfig ( {
5
+ title : "Fcitx5 macOS" ,
6
+ description : "Fcitx5 ported to other platforms." ,
7
+ themeConfig : {
8
+ // https://vitepress.dev/reference/default-theme-config
9
+ nav : [
10
+ { text : 'Home' , link : '/' } ,
11
+ { text : 'macOS' , link : '/docs' } ,
12
+ { text : 'Linux' , link : 'https://fcitx-im.org/wiki/Fcitx_5' } ,
13
+ { text : 'Android' , link : 'https://fcitx5-android.github.io' }
14
+ ] ,
15
+
16
+ sidebar : [
17
+ {
18
+ text : '简介' ,
19
+ link : '/docs/' ,
20
+ } ,
21
+ {
22
+ text : '输入法' ,
23
+ items : [
24
+ { text : '拼音/双拼' , link : '/docs/im/pinyin' } ,
25
+ { text : '码表' , link : '/docs/im/table' } ,
26
+ { text : '中州韵(Rime)' , link : '/docs/im/rime' } ,
27
+ ]
28
+ }
29
+ ] ,
30
+
31
+ socialLinks : [
32
+ { icon : 'github' , link : 'https://github.com/fcitx-contrib' }
33
+ ]
34
+ }
35
+ } )
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ # 简介
2
+
3
+ 小企鹅输入法框架(以下简称小企鹅)起源于 Linux,后被移植到了 Android 和 macOS。
4
+
5
+ 作为输入法框架,它支持多种输入法(即我们常说的拼音输入法、五笔输入法、日语输入法等)。
6
+
7
+ 不同平台上的小企鹅拥有相似的输入体验,并各有一些平台特色的功能。
8
+
9
+ 请在 [ GitHub] ( https://github.com/fcitx-contrib/fcitx5-macos-installer/blob/master/README.zh-CN.md ) 下载适用于 macOS 的安装包。
10
+
11
+ * 对于大多数用户,拼音版(包含了双拼和五笔)是最佳选择。
12
+
13
+ * 小企鹅安卓版用户,请根据您安装的插件情况选择安装包,并导入安卓版的备份文件。
14
+
15
+ * 鼠须管用户请下载中州韵版,并一键导入鼠须管的方案文件。
16
+
17
+ * 仓输入法用户请下载中州韵版,并导入仓的备份文件。
18
+
19
+ * 其他平台的 Rime 用户请下载中州韵版,并手动导入方案到 ` ~/.local/share/fcitx5/rime ` 。
20
+
21
+ * 小企鹅 Linux 版用户,请下载原装版,并使用插件管理器安装引擎。
Original file line number Diff line number Diff line change
1
+ ---
2
+ # https://vitepress.dev/reference/default-theme-home-page
3
+ layout : home
4
+
5
+ hero :
6
+ name : " Fcitx5 macOS"
7
+ text : 小企鹅输入法
8
+ tagline : 现已登陆 macOS
9
+ actions :
10
+ - theme : brand
11
+ text : 安装
12
+ link : https://github.com/fcitx-contrib/fcitx5-macos-installer/blob/master/README.zh-CN.md
13
+ - theme : alt
14
+ text : 文档
15
+ link : /docs/
16
+
17
+ features :
18
+ - title : 开箱即用
19
+ details : 小企鹅拼音/双拼拥有强大的本地语言模型,并能根据您的输入习惯动态调整。
20
+ - title : 注重隐私
21
+ details : 自由开源软件,不向服务器发送您的输入数据(除非您手动开启云拼音)。
22
+ - title : 精美主题
23
+ details : 您可以使用内置的主题编辑器调整颜色/尺寸/贴图,或者使用 CSS 实现更灵活的控制。
24
+ - title : 实用特性
25
+ details : 卷轴模式,笔画筛选,词库管理,自定义短语,备份恢复,命令行接口……
26
+ - title : 高度定制
27
+ details : 通过中州韵(Rime)插件,您可以设计自己的输入方案,或者使用社区的优秀方案。
28
+ ---
Original file line number Diff line number Diff line change
1
+ {
2
+ "type" : " module" ,
3
+ "devDependencies" : {
4
+ "vitepress" : " ^1.3.0"
5
+ },
6
+ "scripts" : {
7
+ "dev" : " vitepress dev" ,
8
+ "build" : " vitepress build" ,
9
+ "preview" : " vitepress preview"
10
+ }
11
+ }
You can’t perform that action at this time.
0 commit comments