-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
842 lines (678 loc) · 16.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="/src/markdown.ts" type="module"></script>
</head>
<body style="background-color: #fafafa">
<cwe-markdown
style="width: 50%; margin: 20px"
srcdoc='---
这段应该看不见
---
## 换行与分段
在一行的末尾添加两个空格来换行,使用一个空行来分段。
```md line breaks
一行的内容
不会因为换行断开
需要在行末
添加两个空格
```
一行的内容
不会因为换行断开
需要在行末
添加两个空格
一行的内容
不会因为换行断开
需要在行末
添加两个空格
## 公式
使用 [$\KaTeX$](https://github.com/Khan/KaTeX) 引擎和 [markdown-it-math](https://github.com/runarberg/markdown-it-math) 插件渲染,兼容 $\LaTeX$ 公式,对 $\LaTeX$ 的支持情况见 [Things that $\KaTeX$ does not (yet) support](https://github.com/Khan/KaTeX/wiki/Things-that-KaTeX-does-not-(yet)-support)。使用 `$` 插入行内公式,使用 `$$` 插入行间公式。
```tex equation
行内公式:$\sin{x}$
行间公式::arrow_left: ==注意行间公式需要**独行书写**==
$$ \sum_{i=1}^n a_i = 0 $$
... :arrow_left: ==同理,行间公式结束后也需要换行==
对于渲染错误的公式 $\error$,可以鼠标悬浮其上查看错误信息。
```
效果:
> 行内公式:$\sin{x}$
> 行间公式::arrow_left: ==注意行间公式需要**独行书写**==
> $$ \begin{array}{ccc}
1&3&\Theta \\
{\frac{{dy}}{{dx}}}&\lim_{\delta x \to 0}& \pm \\
{\sum\limits_1^3 2 }&x& \ne
\end{array} \theta \sum_{i=1}^n a_i = 0 P=\frac{u^3}{(u_R^3-u_{ci}^3 )}P_R-\frac{u_{ci}^3}{(u_R^3-u_ci^3 )}P_R\qquad(u_ci≤u≤u_R) $$
> ... :arrow_left: ==同理,行间公式结束后也需要换行==
> 对于渲染错误的公式 $\error$,可以鼠标悬浮其上查看错误信息。
## 链接
::: tip
对于指向文档系统内部的链接,包括超链接和图片,一般应使用相对路径。如:
```md
<!-- in /zh-hans/components/comp_newClarkTransform.md-->
[CloudPSS 同步电机标幺值和有名值系统](../other/SyncGenPerUnitSystem.md)
[Park 变换器](comp_newParkTransform.md)
```
:::
## 图片
引用图片时使用 `![alt text](path "title" =size)` 语法。
图片显示规则如下:
- 当图片上下为空行时,图片将居中显示;
- `title` 为鼠标悬停时的提示文本;
- `alt text` 为图片题注;
- `size` 用于指定图片尺寸,具体使用方法见下文。
如 `![alt-text](https://picsum.photos/100/100 "Title" =x100)` 得到
![alt-text](https://picsum.photos/100/100 "Title" =x100)
可以使用题注进行交叉引用,如 `[link](#alt-text)` [link](#alt-text)。
:::: info
可以使用以下语法指定图片的尺寸:
- 指定最大宽度
`![alt text](intro1.png "Title" =200x)`
- 指定最大高度
`![alt text](intro1.png "Title" =x100)`
::: tip
不建议同时指定宽度和高度,可能导致图片变形。
:::
::::
## 媒体
使用 `@[provider](id_or_url)` 语法插入媒体。
```md media
@[youtube](_QobdWOa02o)
@[youku](XMTQ2MjU2NTU2OA)
@[vimeo](111114712)
@[bilibili](av27150168)
@[tencent](w3156zebhpv)
```
效果:
@[youtube](_QobdWOa02o)
@[youku](XMTQ2MjU2NTU2OA)
@[vimeo](111114712)
@[bilibili](av27150168)
@[tencent](w3156zebhpv)
## 表格
支持高级表格功能。
如:
```md table
[高级表格]
| | Grouping ||
| First Header | Second Header | Third Header |
| ------------ | :-----------: | -----------: |
| Content | _Long Cell_ ||
| ^^ | **Cell** | Cell |
| Content | **Cell** | ^^ |
| New section | More | Data |
如[上表](#高级表格)所示……
```
效果:
[高级表格]
| | Grouping ||
| First Header | Second Header | Third Header |
| ------------ | :-----------: | -----------: |
| Content | _Long Cell_ ||
| ^^ | **Cell** | Cell |
| Content | **Cell** | ^^ |
| New section | More | Data |
如[上表](#高级表格)所示……
::: tip
省略开头的 `[高级表格]` 将隐藏表名。
:::
## 文本居中
```md center
->centered
text<-
```
效果
> ->centered
> text<-
## 代码
语法如下:
````markdown codeblock
```[语言] [标题]
```
````
可用的 `[语言]` 包括 `plain` `tex` `md` `yaml` `js` `html` `css` `c` `cpp` `csharp` `pyhton` `matlab`……
如:
````md codeblock example
```javascript a simple js script
console.log('hello world');
```
````
效果:
```javascript a simple js script
console.log('hello world');
```
代码块也可以使用标题进行交叉引用,如 `[上文的代码](#a-simple-js-script)` [上文的代码](#a-simple-js-script)。
## 缩写
如:
```md abbr
定义一个缩写:
*[RMS]: 有效值
在文中使用缩写:
RMS 指有效值
```
效果:
> 定义一个缩写:
> *[RMS]: 有效值
> 在文中使用缩写:
> RMS 指有效值
## 脚注
如:
```md footnote
定义一个脚注:
[^test-platform]: 测试平台为 NVIDIA(R) Tesla(R) V100
使用缩进来产生多行内容
在文中使用脚注:
测试[^test-platform]结果如下[^test-platform]:……
如果只使用一次的话,也可以使用内联语法。^[内联脚注更方便吗?]
```
效果:
> 定义一个脚注:
> [^test-platform]: 测试平台为 NVIDIA(R) Tesla(R) V100
>
> 使用缩进来产生多行内容
>
> 在文中使用脚注:
> 测试[^test-platform]结果如下[^test-platform]:……
>
> 如果只使用一次的话,也可以使用内联语法。^[内联脚注更方便吗?]
## 杂项
- **下标**:`H~2~0` H~2~0
- **上标**:`x^2^` x^2^
- **标记**:`==mark==` ==mark==
- **插入与删除**:`++Inserted++` ++Inserted++;`~~Del~~` ~~Del~~
- **[Emoji](https://www.webpagefx.com/tools/emoji-cheat-sheet/)**:`:smile:` :smile: `8-)` 8-) `(R)` (R) `(TM)` (TM)
- **键盘按键**:`[[Ctrl]]+[[Alt]]+[[Del]]` [[Ctrl]]+[[Alt]]+[[Del]]
- 其他标准 MarkDown 语法不再赘述。
Examples from <http://mdp.tylingsoft.com/>.
## mermaid charts
### Flowchart
```mermaid
graph TD
A[Christmas] -->|Get money| B(Go shopping)
B --> C{Let me think}
C -->|One| D[Laptop]
C -->|Two| E[iPhone]
C -->|Three| F[Car]
```
[Flowchart Syntax](http://knsv.github.io/mermaid/#flowcharts-basic-syntax)
### Sequence diagram
```mermaid
sequenceDiagram
loop every day
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
end
```
[Sequence Diagram Syntax](http://knsv.github.io/mermaid/#sequence-diagrams)
### Gantt diagram
```mermaid
gantt
dateFormat YYYY-MM-DD
title Adding GANTT diagram to mermaid
section A section
Completed task :done, des1, 2014-01-06,2014-01-08
Active task :active, des2, 2014-01-09, 3d
Future task : des3, after des2, 5d
Future task2 : des4, after des3, 5d
section Critical tasks
Completed task in the critical line :crit, done, 2014-01-06,24h
Implement parser and jison :crit, done, after des1, 2d
Create tests for parser :crit, active, 3d
Future task in critical line :crit, 5d
Create tests for renderer :2d
Add to mermaid :1d
section Documentation
Describe gantt syntax :active, a1, after des1, 3d
Add gantt diagram to demo page :after a1 , 20h
Add another diagram to demo page :doc1, after a1 , 48h
section Last section
Describe gantt syntax :after doc1, 3d
Add gantt diagram to demo page : 20h
Add another diagram to demo page : 48h
```
[Gantt Diagram Syntax](http://knsv.github.io/mermaid/#gant-diagrams)
### Class diagram
```mermaid
classDiagram
Class01 <|-- AveryLongClass : Cool
Class03 *-- Class04
Class05 o-- Class06
Class07 .. Class08
Class09 --> C2 : Where am i?
Class09 --* C3
Class09 --|> Class07
Class07 : equals()
Class07 : Object[] elementData
Class01 : size()
Class01 : int chimp
Class01 : int gorilla
Class08 <--> C2: Cool label
```
Class diagram is powered by [mermaid](https://github.com/knsv/mermaid).
## Charts
[Documentation for charts](http://www.chartjs.org/docs/)
### Line Chart
```chart
{
"type": "line",
"data": {
"labels": [
"January",
"February",
"March",
"April",
"May",
"June",
"July"
],
"datasets": [
{
"label": "# of bugs",
"fill": false,
"lineTension": 0.1,
"backgroundColor": "rgba(75,192,192,0.4)",
"borderColor": "rgba(75,192,192,1)",
"borderCapStyle": "butt",
"borderDash": [],
"borderDashOffset": 0,
"borderJoinStyle": "miter",
"pointBorderColor": "rgba(75,192,192,1)",
"pointBackgroundColor": "#fff",
"pointBorderWidth": 1,
"pointHoverRadius": 5,
"pointHoverBackgroundColor": "rgba(75,192,192,1)",
"pointHoverBorderColor": "rgba(220,220,220,1)",
"pointHoverBorderWidth": 2,
"pointRadius": 1,
"pointHitRadius": 10,
"data": [
65,
59,
80,
81,
56,
55,
40
],
"spanGaps": false
}
]
},
"options": {}
}
```
[Documentation for Line Chart](http://www.chartjs.org/docs/#line-chart)
### Bar Chart
```chart
{
"type": "bar",
"data": {
"labels": [
"Red",
"Blue",
"Yellow",
"Green",
"Purple",
"Orange"
],
"datasets": [
{
"label": "# of Votes",
"data": [
12,
19,
3,
5,
2,
3
],
"backgroundColor": [
"rgba(255, 99, 132, 0.2)",
"rgba(54, 162, 235, 0.2)",
"rgba(255, 206, 86, 0.2)",
"rgba(75, 192, 192, 0.2)",
"rgba(153, 102, 255, 0.2)",
"rgba(255, 159, 64, 0.2)"
],
"borderColor": [
"rgba(255,99,132,1)",
"rgba(54, 162, 235, 1)",
"rgba(255, 206, 86, 1)",
"rgba(75, 192, 192, 1)",
"rgba(153, 102, 255, 1)",
"rgba(255, 159, 64, 1)"
],
"borderWidth": 1
}
]
},
"options": {}
}
```
[Documentation for Bar Chart](http://www.chartjs.org/docs/#bar-chart)
### Radar Chart
```chart
{
"type": "radar",
"data": {
"labels": [
"Eating",
"Drinking",
"Sleeping",
"Designing",
"Coding",
"Cycling",
"Running"
],
"datasets": [
{
"label": "My First dataset",
"backgroundColor": "rgba(179,181,198,0.2)",
"borderColor": "rgba(179,181,198,1)",
"pointBackgroundColor": "rgba(179,181,198,1)",
"pointBorderColor": "#fff",
"pointHoverBackgroundColor": "#fff",
"pointHoverBorderColor": "rgba(179,181,198,1)",
"data": [
65,
59,
90,
81,
56,
55,
40
]
},
{
"label": "My Second dataset",
"backgroundColor": "rgba(255,99,132,0.2)",
"borderColor": "rgba(255,99,132,1)",
"pointBackgroundColor": "rgba(255,99,132,1)",
"pointBorderColor": "#fff",
"pointHoverBackgroundColor": "#fff",
"pointHoverBorderColor": "rgba(255,99,132,1)",
"data": [
28,
48,
40,
19,
96,
27,
100
]
}
]
},
"options": {}
}
```
[Documentation for Radar Chart](http://www.chartjs.org/docs/#radar-chart)
### Polar Area Chart
```chart
{
"type": "polarArea",
"data": {
"datasets": [
{
"data": [
11,
16,
7,
3,
14
],
"backgroundColor": [
"#FF6384",
"#4BC0C0",
"#FFCE56",
"#E7E9ED",
"#36A2EB"
],
"label": "My dataset"
}
],
"labels": [
"Red",
"Green",
"Yellow",
"Grey",
"Blue"
]
},
"options": {}
}
```
[Documentation for Polar Area Chart](http://www.chartjs.org/docs/#polar-area-chart)
### Pie Chart
```chart
{
"type": "pie",
"data": {
"labels": [
"Red",
"Blue",
"Yellow"
],
"datasets": [
{
"data": [
300,
50,
100
],
"backgroundColor": [
"#FF6384",
"#36A2EB",
"#FFCE56"
],
"hoverBackgroundColor": [
"#FF6384",
"#36A2EB",
"#FFCE56"
]
}
]
},
"options": {}
}
```
[Documentation for Pie Chart](http://www.chartjs.org/docs/#doughnut-pie-chart)
### Doughnut Chart
```chart
{
"type": "doughnut",
"data": {
"labels": [
"Red",
"Blue",
"Yellow"
],
"datasets": [
{
"data": [
300,
50,
100
],
"backgroundColor": [
"#FF6384",
"#36A2EB",
"#FFCE56"
],
"hoverBackgroundColor": [
"#FF6384",
"#36A2EB",
"#FFCE56"
]
}
]
},
"options": {}
}
```
[Documentation for Doughnut Chart](http://www.chartjs.org/docs/#doughnut-pie-chart)
### Bubble Chart
```chart
{
"type": "bubble",
"data": {
"datasets": [
{
"label": "First Dataset",
"data": [
{
"x": 20,
"y": 30,
"r": 15
},
{
"x": 40,
"y": 10,
"r": 10
}
],
"backgroundColor": "#FF6384",
"hoverBackgroundColor": "#FF6384"
}
]
},
"options": {}
}
```
[Documentation for Bubble Chart](http://www.chartjs.org/docs/#bubble-chart)
---
title: 文档块
order: 20
---
## 引用
如:
```md quote
> Level1
>
> > Level2
>
> <!-- 退出层级需要一行空行-->
>
> Level1
```
效果:
> Level1
>
> > Level2
>
> <!-- 退出层级需要一行空行-->
>
> Level1
::: info
同理,引用结束需要一行空行。
:::
## 定义
如:
```tex deflist
有效值
: 在相同的电阻上分别通过直流电流和交流电流,经过一个交流周期的时间,如果它们在电阻上所消耗的电能相等的话,则把该直流电流(电压)的大小作为交流电流(电压)的有效值。
$$ G_{rms} = \sqrt{\frac{1}{T} \int_{-\frac{T}{2} } ^{\frac{T}{2} }{ g(t)^{2} \operatorname{d}\! t } } $$
: 正弦电流(电压)的有效值等于其最大值(幅值)的 $\frac{1}{\sqrt{2}}$ ,约 $0.707$ 倍。
另一个定义
~ 也可以使用波浪线。
通过缩进确定定义的范围。
~ 另起一段。
...
```
效果:
有效值
: 在相同的电阻上分别通过直流电流和交流电流,经过一个交流周期的时间,如果它们在电阻上所消耗的电能相等的话,则把该直流电流(电压)的大小作为交流电流(电压)的有效值。
$$ G_{rms} = \sqrt{\frac{1}{T} \int_{-\frac{T}{2} } ^{\frac{T}{2} }{ g(t)^{2} \operatorname{d}\! t } } $$
: 正弦电流(电压)的有效值等于其最大值(幅值)的 $\frac{1}{\sqrt{2} }$ ,约 $0.707$ 倍。
另一个定义
~ 也可以使用波浪线。
通过缩进确定定义的范围。
~ 另起一段。
...
::: info
定义的前后需要空行分隔。
:::
## 摘要
显示一个可以折叠的文档块。
```md details
::: summary 摘要**标题** $a=1$
内容
:::
```
效果:
::: summary 摘要**标题** $a=1$
内容
:::
## 容器
显示一个特定样式的容器。
如:
```md pullquote
:::tip
tip
:::
:::question
question
:::
:::success
success
:::
:::fail 自定义[内容](#)
fail
:::
:::warning
warning
:::
:::error
error
:::
::::info
info
:::info
info 2
:::
::::
```
效果:
:::tip
tip
:::
:::question
question
:::
:::success
success
:::
:::fail 自定义[内容](#)
fail
:::
:::warning
warning
:::
:::error
error
:::
::::info
info
:::info
info 2
:::
::::
'
></cwe-markdown>
<script type="module">
import { theme } from './src/config.ts';
theme.next('light');
customElements.whenDefined('cwe-markdown').then(() => {
const src = document.querySelector('cwe-markdown').srcdoc;
const src2 = src.slice(0, 50) + 'x\n\n' + src.slice(50);
document.addEventListener('click', () => {
console.log('refersh');
const c = document.querySelector('cwe-markdown').srcdoc;
document.querySelector('cwe-markdown').srcdoc = c === src ? src2 : src;
});
});
</script>
</body>
</html>