Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
HondryTravis committed Nov 11, 2020
1 parent 7b07d08 commit 07f5054
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 20 deletions.
8 changes: 4 additions & 4 deletions docs/css/css_io.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: CSS 阻塞 I/O 初探
css 会阻塞 js 加载么?
:::

## SCRIPT 脚本影响 DOM 解析<Badge type="tip" text="会么?"/>
## SCRIPT 脚本影响 DOM 解析

打脸代码

Expand Down Expand Up @@ -34,7 +34,7 @@ script 内嵌脚本/src 放在 dom 底部会阻塞 dom 渲染,不会影响解
DOM解析不影响 渲染依旧等待
:::

## CSS 影响 DOM 渲染<Badge type="tip" text="会么?"/>
## CSS 影响 DOM 渲染

打脸代码

Expand Down Expand Up @@ -77,7 +77,7 @@ DOM解析不影响 渲染依旧等待

:::

## CSS 阻塞 Scirpt 加载<Badge type="tip" text="会么?"/>
## CSS 阻塞 Scirpt 加载

打脸代码

Expand Down Expand Up @@ -116,7 +116,7 @@ css 加载会阻塞后面JS脚本/语句

:::

## CSS 阻塞 DOMLoading<Badge type="tip" text="会么?"/>
## CSS 阻塞 DOMLoading

打脸代码

Expand Down
2 changes: 1 addition & 1 deletion docs/http/http_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ HTTP协议进行传输的。

左边是 **ISO/OSI标准协议**,右图是**事实协议****ISO/OSI 标准协议** 是对**事实协议**的一个补充,最初设计的不完整

更为详细流程,参考 [TCP 协议](http/tcp)
更为详细流程,参考 [TCP 协议](./tcp)

**应用层**:

Expand Down
2 changes: 1 addition & 1 deletion docs/http/http_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: HTTP 2/3 & HTTPS
---

## 密码学<Badge type="tip" text="了解即可"/>
## 密码学

密码学的处理对象是数字和字符串

Expand Down
2 changes: 1 addition & 1 deletion docs/node/pm2.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PM2 是 node 进程管理工具,可以利用它来简化很多node应用管理

[pm2 官网](https://pm2.io/)

## 创建进程的两种方式<Badge type="tip" text="了解即可"/>
## 创建进程的两种方式

1. fork
2. exec
Expand Down
2 changes: 1 addition & 1 deletion docs/performance/browser_rendering_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,6 @@ Blink 是未来

Blink官方文档:<http://www.chromium.org/blink>

### webkit 架构<Badge type="tip" text="了解即可"/>
### webkit 架构

![webkit_core](/images/performance/webkit_core.png)
8 changes: 2 additions & 6 deletions docs/performance/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ HTTP/2对同⼀域名下所有请求都是基于流,也就是说同⼀域名

## 页面加载

各项指标信息,移步至 [页面性能指标](performance/page_performance_index)
各项指标信息,移步至 [页面性能指标](./page_performance_index)

根据不同的情况做调优

Expand Down Expand Up @@ -145,8 +145,4 @@ update 阶段 为 FMP 阶段 挂载数据,视图更新

:::

几种对比
<!--
<ClientOnly>
<PerformanceResult />
</ClientOnly> -->
几种对比
2 changes: 1 addition & 1 deletion docs/thinking/functional_programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ readFile('./user.txt')
- 惰性函数:比较懒的函数,下一次就不想再求值了(将上一次的运行结果缓存起来了)。
- 高阶函数:将函数传给函数,让函数具有更复杂的能力和功能。

## 流行函数式编程库<Badge type="tip" text="源码可读"/>
## 流行函数式编程库

- RxJS
- cycleJS
Expand Down
10 changes: 5 additions & 5 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ module.exports = {
items: [
{
label: '如何监控页面性能指标',
to: 'docs/performance/page_performance_index',
to: '/docs/performance/page_performance_index',
},
{
label: '设计模式',
to: 'docs/thinking/design_patterns',
to: '/docs/thinking/design_patterns',
},
{
label: '函数式编程',
to: 'docs/thinking/functional_programming',
to: '/docs/thinking/functional_programming',
}
],
},
Expand All @@ -121,7 +121,7 @@ module.exports = {
items: [
{
label: '算法',
to: '/algorithm/main',
to: '/algorithm/index',
}
],
},
Expand Down Expand Up @@ -159,7 +159,7 @@ module.exports = {
items: [
{
label: '邮箱 | 社交方式',
to: 'docs/contact',
to: '/docs/contact',
},
]
},
Expand Down

0 comments on commit 07f5054

Please sign in to comment.