Skip to content

Commit d3a6d7c

Browse files
committed
完善5.0 docs
1 parent 2ed3f41 commit d3a6d7c

File tree

14 files changed

+25
-16
lines changed

14 files changed

+25
-16
lines changed

_docs/txlcn/demo/dubbo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Dubbo示例
2+
title: 示例|Dubbo示例
33
permalink: /docs/txlcn-demo-dubbo/
44
---
55

_docs/txlcn/demo/env.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 尝试下简单的分布式事务
2+
title: 示例|尝试下简单的分布式事务
33
permalink: /docs/txlcn-demo-env/
44
---
55

_docs/txlcn/demo/springcloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: SpringCloud示例
2+
title: 示例|SpringCloud示例
33
permalink: /docs/txlcn-demo-springcloud/
44
---
55

_docs/txlcn/expansion/message.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 通讯协议扩展
2+
title: 事务拓展|通讯协议扩展
33
permalink: /docs/txlcn-expansion-message/
44
---
55

_docs/txlcn/expansion/rpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: RPC框架扩展
2+
title: 事务拓展|RPC框架扩展
33
permalink: /docs/txlcn-expansion-rpc/
44
---
55

_docs/txlcn/expansion/transaction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 事务模式扩展
2+
title: 事务拓展|事务模式扩展
33
permalink: /docs/txlcn-expansion-transaction/
44
---
55

_docs/txlcn/principle/control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 事务控制原理
2+
title: 原理介绍|事务控制原理
33
permalink: /docs/txlcn-principle-control/
44
---
55

_docs/txlcn/principle/lcn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: LCN事务模式
2+
title: 原理介绍|LCN事务模式
33
permalink: /docs/txlcn-principle-lcn/
44
---
55

_docs/txlcn/principle/tcc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: TCC事务模式
2+
title: 原理介绍|TCC事务模式
33
permalink: /docs/txlcn-principle-tcc/
44
---
55

_docs/txlcn/principle/txc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: TXC事务模式
2+
title: 原理介绍|TXC事务模式
33
permalink: /docs/txlcn-principle-txc/
44
---
55

_docs/txlcn/setting/client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: TxClient配置说明
2+
title: 配置手册|TxClient配置说明
33
permalink: /docs/txlcn-setting-client/
44
---
55

_docs/txlcn/setting/distributed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 负载与集群配置
2+
title: 配置手册|负载与集群配置
33
permalink: /docs/txlcn-setting-distributed/
44
---
55

_docs/txlcn/setting/manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: TxManager配置说明
2+
title: 配置手册|TxManager配置说明
33
permalink: /docs/txlcn-setting-manager/
44
---
55

_includes/docs_nav.html

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
<div class="panel panel-default">
44
<div class="panel-heading">
55
<h4 class="panel-title">
6-
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapse-{{forloop.index}}" aria-expanded="false" aria-controls="collapse-{{forloop.index}}">
6+
<a role="button"
7+
data-toggle="collapse"
8+
data-parent="#accordion"
9+
href="#collapse-{{forloop.index}}"
10+
aria-expanded="false"
11+
aria-controls="collapse-{{forloop.index}}">
712
{{ section.title }}
813
</a>
914
</h4>
@@ -15,12 +20,16 @@ <h4 class="panel-title">
1520
{% assign collapsed = false %}
1621
{% endif %}
1722
{% endfor %}
18-
<div class="panel-collapse{% if collapsed %} collapse{% endif %}" id="collapse-{{forloop.index}}" role="tabpanel" aria-label="Side Navigation">
23+
<div class="panel-collapse{% if collapsed %} collapse{% endif %}"
24+
id="collapse-{{forloop.index}}"
25+
role="tabpanel"
26+
aria-label="Side Navigation">
1927
<div class="list-group">
2028
{% for item in section.docs %}
2129
{% assign item_url = item | prepend:"/docs/" | append:"/" %}
2230
{% assign p = site.docs | where:"url", item_url | first %}
23-
<a class="list-group-item {% if item_url == page.url %}active{% endif %}" href="{{ p.url | prepend: site.baseurl }}">{{ p.title }}</a>
31+
<a class="list-group-item {% if item_url == page.url %}active{% endif %}"
32+
href="{{ p.url | prepend: site.baseurl }}">{{ p.title }}</a>
2433
{% endfor %}
2534
</div>
2635
</div>

0 commit comments

Comments
 (0)