Skip to content

Commit d03a015

Browse files
committed
auto commit
1 parent e2df594 commit d03a015

1 file changed

Lines changed: 57 additions & 0 deletions

File tree

docs/markdown/content.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ title: 语法记录
6666

6767
这是一个行内公式:$E=mc^2$
6868

69+
测试下公式 $\sqrt{3x-1}+(1+x)^2$
70+
6971
### 块级公式
7072

7173
这是一个块级公式:
@@ -127,3 +129,58 @@ title 甘特图
127129
## 强调
128130

129131
==强调==
132+
133+
## 折叠
134+
135+
<details open>
136+
<summary>折叠示例</summary>
137+
<p>这是一个折叠示例</p>
138+
</details>
139+
140+
141+
## 关系图
142+
143+
```mermaid
144+
graph TD;
145+
A-->B;
146+
A-->C;
147+
B-->D;
148+
C-->D;
149+
```
150+
151+
## 使用 TopoJSON
152+
153+
```topojson
154+
{
155+
"type": "Topology",
156+
"transform": {
157+
"scale": [0.0005000500050005, 0.00010001000100010001],
158+
"translate": [100, 0]
159+
},
160+
"objects": {
161+
"example": {
162+
"type": "GeometryCollection",
163+
"geometries": [
164+
{
165+
"type": "Point",
166+
"properties": {"prop0": "value0"},
167+
"coordinates": [4000, 5000]
168+
},
169+
{
170+
"type": "LineString",
171+
"properties": {"prop0": "value0", "prop1": 0},
172+
"arcs": [0]
173+
},
174+
{
175+
"type": "Polygon",
176+
"properties": {"prop0": "value0",
177+
"prop1": {"this": "that"}
178+
},
179+
"arcs": [[1]]
180+
}
181+
]
182+
}
183+
},
184+
"arcs": [[[4000, 0], [1999, 9999], [2000, -9999], [2000, 9999]],[[0, 0], [0, 9999], [2000, 0], [0, -9999], [-2000, 0]]]
185+
}
186+
```

0 commit comments

Comments
 (0)