提交更新

This commit is contained in:
2025-04-11 14:50:01 -04:00
parent dd0caecfb8
commit 21c2028b9d
5 changed files with 66 additions and 93 deletions
+6 -2
View File
@@ -3,7 +3,7 @@ import {defineConfig} from 'vitepress'
// https://vitepress.dev/reference/site-config // https://vitepress.dev/reference/site-config
export default defineConfig({ export default defineConfig({
srcDir: './src', srcDir: './src',
lang: 'zh-CN', lang: 'zh-Hans',
title: "iSharkFly 文档和手册", title: "iSharkFly 文档和手册",
description: "iSharkFly - Docs", description: "iSharkFly - Docs",
head: [ head: [
@@ -17,13 +17,17 @@ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
})(window,document,'script','dataLayer','GTM-W3NL9V');` })(window,document,'script','dataLayer','GTM-W3NL9V');`
] ]
], ],
themeConfig: { themeConfig: {
// https://vitepress.dev/reference/default-theme-config // https://vitepress.dev/reference/default-theme-config
nav: [ nav: [
{text: '主页', link: '/'}, {text: '主页', link: '/'},
{text: 'iSharkFly', link: 'https://www.isharkfly.com'} {text: 'iSharkFly', link: 'https://www.isharkfly.com'}
], ],
footer: {
message: '基于 MIT 许可发布',
copyright: `版权所有 © 2019-${new Date().getFullYear()} iSharkFly.COm`
},
sidebar: [ sidebar: [
{ {
text: '计算机相关技术', text: '计算机相关技术',
+1
View File
@@ -1,5 +1,6 @@
# 联系方式 # 联系方式
请使用下面的联系方式和我们联系: 请使用下面的联系方式和我们联系:
| 联系方式名称 | 联系方式 | | 联系方式名称 | 联系方式 |
+24 -6
View File
@@ -11,18 +11,36 @@ hero:
text: 程序语言 text: 程序语言
link: /programming-language/index link: /programming-language/index
- theme: alt - theme: alt
text: 库和技术栈++ text: 库和技术栈
link: /framework link: /framework
- theme: alt - theme: alt
text: 产品应用 text: 产品应用
link: /product link: /product
- theme: alt
text: 组织和基金会
link: /product
- theme: alt
text: 数据结构和算法
link: /product
- theme: alt
text: DevOps
link: /product
- theme: alt
text: 职场和面试
link: /product
- theme: alt
text: 短文
link: /product
features: features:
- title: Feature A - title: iSharkFly 文档项目
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
- title: Feature B - title: 构建框架
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
- title: Feature C
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
- title: 快速导航
details: Lorem ipsum dolor sit amet, consectetur adipiscing [elit](/links)
--- ---
---
<!--@include: CONTACT.md -->
+35
View File
@@ -0,0 +1,35 @@
# iSharkFly 文档和手册快速导航
在下面的表格中,我们列出了一些比较有用的 CWIKIUS 相关软件开发使用教程的导航,在我们文档的整理中,也参考了一些这些文档。
在这里对原作者表示感谢。
| 网站名称 | URL | NOTE | GitHub |
|--------------------|----------------------------------------------------------------|---------------------------|--------------------------------------------------------------------------------------------------------------|
| DOCS.ISHARKFLY.COM | [https://docs.isharkfly.com/#/](https://docs.isharkfly.com/#/) | 本手册的编译版本将会部署在这个链接上 | [https://github.com/iSharkfly-Docs/docs-isharkfly-com](https://github.com/iSharkfly-Docs/docs-isharkfly-com) |
| WWW.CWIKIUS.CN | [http://www.cwikius.cn/](http://www.cwikius.cn/) | CWIKIUS.CN 一个有独立思考和温度的清新站 | N/A |
## 前端和 UI
| 网站名称 | URL | NOTE |
|-----------------|-----------------------------------------------------------------------------|-----------------------------|
| 前端技术社区 | https://www.ossez.com/c/toolkit-algorithm-computer-science/web-front-end/26 | 计算机相关的前端框架和讨论 |
| TypeScript 文档手册 | https://typescript.ossez.com/ | TypeScript 相关技术文档和手册 |
| Angular 技术手册 | https://angular.ossez.com/ | Angular 手册的在线翻译版本,从源代码中进行编译 |
| TypeScript 文档手册 | https://typescript.ossez.com/ | TypeScript 相关技术文档和手册 |
| Docsify 中文文档手册 | https://docsify.isharkfly.com/ | Docsify 可以快速帮你生成文档网站 |
## 后端和数据
| 网站名称 | URL | NOTE |
|------------------------|-----------------------------------|----------------------|
| Apache Druid 技术手册 | https://druid.isharkfly.com/ | Druid 手册的在线翻译版本 |
| Amazon OpenSearch 技术手册 | https://opensearch.isharkfly.com/ | OpenSearch 手册的在线翻译版本 |
| HAPI FHIR | https://fhir.isharkfly.com/#/ | FHIR 相关技术文档的收集和讨论 |
## 容器 docker
| 网站名称 | URL | NOTE |
|--------------------|--------------------------------|-------------------------------------------------------------|
| Docker 手册中译在线版 | https://docker.ossez.com/ | 基于 Docker 容器英文手册的翻译版本 |
| Docker 手册中译 MD 在线版 | https://docker-docs.ossez.com/ | 因为 Docker 的官方手册进行了渲染,我们推荐你使用上面的链接,这个版本为 docsify 渲染版本,可能会丢格式 |
-85
View File
@@ -1,85 +0,0 @@
# Markdown Extension Examples
This page demonstrates some of the built-in markdown extensions provided by VitePress.
## Syntax Highlighting
VitePress provides Syntax Highlighting powered by [Shiki](https://github.com/shikijs/shiki), with additional features like line-highlighting:
**Input**
````md
```js{4}
export default {
data () {
return {
msg: 'Highlighted!'
}
}
}
```
````
**Output**
```js{4}
export default {
data () {
return {
msg: 'Highlighted!'
}
}
}
```
## Custom Containers
**Input**
```md
::: info
This is an info box.
:::
::: tip
This is a tip.
:::
::: warning
This is a warning.
:::
::: danger
This is a dangerous warning.
:::
::: details
This is a details block.
:::
```
**Output**
::: info
This is an info box.
:::
::: tip
This is a tip.
:::
::: warning
This is a warning.
:::
::: danger
This is a dangerous warning.
:::
::: details
This is a details block.
:::
## More
Check out the documentation for the [full list of markdown extensions](https://vitepress.dev/guide/markdown).