Skip to content

Commit

Permalink
fix(domain): wrong link address
Browse files Browse the repository at this point in the history
  • Loading branch information
Theo-Messi committed Jun 20, 2024
1 parent 5116bf6 commit 01b617c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default defineConfig({

// 站点地图
sitemap: {
hostname: 'https://theovan.cn'
hostname: 'https://www.theovan.cn'
},

// markdown-it插件配置
Expand Down
2 changes: 1 addition & 1 deletion .vitepress/configs/head.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const head: HeadConfig[] = [
['meta', { name: 'og:type', content: 'website' }],
['meta', { name: 'og:locale', content: 'zh-CN' }],
['meta', { name: 'og:site_name', content: 'Theo Docs' }],
['meta', { name: 'og:image', content: 'https://theovan.cn/avatar.png' }],
['meta', { name: 'og:image', content: 'https://www.theovan.cn/avatar.png' }],
['meta', { name: 'robots', content: 'index, follow' }],
['meta', { name: 'evisit-after', content: '1 day' }],
['meta', { name: 'description', content: 'zh-CN' }],
Expand Down
4 changes: 2 additions & 2 deletions .vitepress/theme/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<div class="mb2 fw6 f14">相关链接</div>
<ul>
<li class="mb2">
<a class="external-link" target="_blank" href="https://theovan.cn/">Theo-Docs</a>
<a class="external-link" target="_blank" href="https://www.theovan.cn/">Theo-Docs</a>
</li>
<li class="mb2">
<a class="external-link" target="_blank" href="https://xx.theovan.cn/">玄学宝典</a>
Expand All @@ -91,7 +91,7 @@
<!-- 底部信息栏 -->
<div class="flex" style="display: inline-block">
<span class="ml1"><a target="_blank" href="https://beian.miit.gov.cn/">鄂ICP备2024060426号</a></span>
<!-- <span class="ml1">粤公网安备<a target="_blank" href="https://theovan.cn/">44030002000001号</a></span> -->
<!-- <span class="ml1">粤公网安备<a target="_blank" href="https://www.theovan.cn/">44030002000001号</a></span> -->
</div>
<div class="flex ma4" style="display: inline-block">
<span class="ml1">
Expand Down
28 changes: 14 additions & 14 deletions src/FE/Markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ _斜体文本_
**输入**

```
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
```

**输出**

[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)

## 图片

Expand Down Expand Up @@ -211,45 +211,45 @@ _斜体文本_

```
::: info
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::
::: tip
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::
::: warning
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::
::: danger
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::
::: details
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::
```

**输出**
::: info
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::

::: tip
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::

::: warning
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::

::: danger
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::

::: details
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::

## 自定义容器
Expand All @@ -258,7 +258,7 @@ _斜体文本_

````
::: danger STOP
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::
::: details Click me to view the code
Expand All @@ -272,7 +272,7 @@ console.log('Hello, VitePress!')

**输出**
::: danger STOP
[这是一个链接](https://theovan.cn/)
[这是一个链接](https://www.theovan.cn/)
:::

::: details Click me to view the code
Expand Down
2 changes: 1 addition & 1 deletion src/public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
User-agent: *
Disallow:
Sitemap: https://theovan.cn/sitemap.xml
Sitemap: https://www.theovan.cn/sitemap.xml

0 comments on commit 01b617c

Please sign in to comment.