-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2011 lines (988 loc) · 54.8 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
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="theme-next gemini use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/siifan168.github.io/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="/siifan168.github.io/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/siifan168.github.io/css/main.css?v=5.1.4" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/siifan168.github.io/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/siifan168.github.io/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/siifan168.github.io/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/siifan168.github.io/images/logo.svg?v=5.1.4" color="#222">
<meta name="keywords" content="Hexo, NexT" />
<link rel="alternate" href="/siifan168.github.io/atom.xml" title="Pthoto个人博客" type="application/atom+xml" />
<meta property="og:type" content="website">
<meta property="og:title" content="Pthoto个人博客">
<meta property="og:url" content="https://github.com/siifan168/siifan168.github.io.git/index.html">
<meta property="og:site_name" content="Pthoto个人博客">
<meta property="og:locale">
<meta property="article:author" content="桃思凡">
<meta name="twitter:card" content="summary">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '',
scheme: 'Gemini',
version: '5.1.4',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: "",
labels: ""
}
};
</script>
<link rel="canonical" href="https://github.com/siifan168/siifan168.github.io.git/"/>
<title>Pthoto个人博客</title>
<meta name="generator" content="Hexo 5.4.0"></head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-left
page-home">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/siifan168.github.io/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Pthoto个人博客</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">思凡</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/siifan168.github.io/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/siifan168.github.io/about/" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/siifan168.github.io/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br />
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup search-popup local-search-popup">
<div class="local-search-header clearfix">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
<div class="local-search-input-wrapper">
<input autocomplete="off"
placeholder="搜索..." spellcheck="false"
type="text" id="local-search-input">
</div>
</div>
<div id="local-search-result"></div>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://github.com/siifan168/siifan168.github.io.git/siifan168.github.io/2021/06/08/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%BD%91%E7%BB%9C/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta itemprop="image" content="/siifan168.github.io/images/avator.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Pthoto个人博客">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/siifan168.github.io/2021/06/08/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%BD%91%E7%BB%9C/" itemprop="url">计算机网络</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2021-06-08T09:24:11+08:00">
2021-06-08
</time>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">更新于:</span>
<time title="更新于" itemprop="dateModified" datetime="2021-06-09T21:06:20+08:00">
2021-06-09
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="第一章-概述"><a class="markdownIt-Anchor" href="#第一章-概述">#</a> 第一章、概述</h1>
<p>互联网现在采用的是存储转发的分组交换技术和三组 ISP 结构<br>
三组 ISP 结构:主干 ISP、地区 ISP、本地 ISP<br>
互联网按工作方式分为边缘部分和核心部分。路由器再核心部分,作用时按存储转发方式进行分组交换</p>
<p>按作用范围不同,网络分为广域网 WAN、城域网 MAN、局域网 LAN、个人区域网 PAN</p>
<p>计算机通信方式:客户 - 服务器方式、对等连接方式(P2P 方式)</p>
<p>网络常用的性能指标:<br>
速率:数据的传送速率,往往是额定速率<br>
带宽:单位时间内网络中信道能通过的最高速率<br>
吞吐量:单位时间内通过某网络 (或信道 / 接口) 的实际数据量<br>
时延:发送时延 + 传播时延 + 排队时延 + 处理时延<br>
时延带宽积:传播时延 * 带宽<br>
往返 RTT:双向交互时间<br>
利用率:30% 最优</p>
<p>TCP/IP 的四层协议:<br>
应用层:通过应用进程间的交互来完成特定网络应用<br>
运输层:TCP(报文段)、UDP(用户数据报)<br>
网际层:IP<br>
网络接口层:<br>
数据链路层:把网络层的 IP 数据报组装成帧,两个相邻结点间的链路上传送帧<br>
物理层:传输数据单位是比特</p>
<p>TCP/IP 协议族:<br>
应用层:HTTP…SMTP DNS…RTP<br>
运输层:TCP UDP<br>
网际层: IP<br>
网络接口层:网络接口 1 网络接口 2 网络接口 3</p>
<h1 id="第二章-物理层"><a class="markdownIt-Anchor" href="#第二章-物理层">#</a> 第二章 物理层</h1>
<p>重要概念:<br>
数据通信系统三大部分:源系统,传输系统,目的系统<br>
通信分为:单向通信,双向交替通信,双向同时通信<br>
传输媒体:导引型传输媒体,非导引型传输媒体<br>
多路复用技术<br>
频分复用<br>
时分复用<br>
统计时分复用、波分复用<br>
码分多址</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://github.com/siifan168/siifan168.github.io.git/siifan168.github.io/2021/06/08/%E5%B7%A5%E4%BD%9C%E6%97%A5%E5%BF%97/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta itemprop="image" content="/siifan168.github.io/images/avator.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Pthoto个人博客">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/siifan168.github.io/2021/06/08/%E5%B7%A5%E4%BD%9C%E6%97%A5%E5%BF%97/" itemprop="url">工作日志</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2021-06-08T09:15:47+08:00">
2021-06-08
</time>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">更新于:</span>
<time title="更新于" itemprop="dateModified" datetime="2021-06-10T08:38:29+08:00">
2021-06-10
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="67"><a class="markdownIt-Anchor" href="#67">#</a> 6/7</h1>
<h2 id="总结昨日错误"><a class="markdownIt-Anchor" href="#总结昨日错误">#</a> 总结昨日错误</h2>
<p>昨天有点自大了,以为他们都是靠 hexo 直接写博客,现在才晓得还要用数据库巴拉巴拉的,提到数据库就摆脑壳</p>
<h2 id="今日工作"><a class="markdownIt-Anchor" href="#今日工作">#</a> 今日工作</h2>
<p>一、先用 hexo 把唐大憨的个人博客写起给她个惊喜<br>
二、了解怎样用 vue 和 node 写个人博客(步骤和流程)<br>
三、有多余时间就把丁时一的题拿着练一下</p>
<h1 id="68"><a class="markdownIt-Anchor" href="#68">#</a> 6/8</h1>
<h2 id="总结昨日工作"><a class="markdownIt-Anchor" href="#总结昨日工作">#</a> 总结昨日工作</h2>
<p>昨天上午搞一了一上午的 shoka 主题,然后不管怎样都感觉搞不出合适的效果,有点沮丧。再想还给不给唐憨憨惊喜。下午又用 next 给部署的时候,感觉 hexo 好像真的不能直接添加博客文章(我不懂,但我大受震惊),准备就先这样用吧,就当一个简单的写日记的地方,反正也还挺方便的,以后有空了再整吧(我想起了那个软件也还没有写完,吐了)。</p>
<h2 id="今日准备工作"><a class="markdownIt-Anchor" href="#今日准备工作">#</a> 今日准备工作</h2>
<p>开始计算机和算法的学习,规划一下学习进度。早上和中午看计算机网络和算法,打瞌睡的话就刷一下题。下午就研究 vue 写博客。<br>
今天计算机网络开张</p>
<h1 id="69"><a class="markdownIt-Anchor" href="#69">#</a> 6/9</h1>
<h2 id="总结昨日工作-2"><a class="markdownIt-Anchor" href="#总结昨日工作-2">#</a> 总结昨日工作</h2>
<p>昨天不晓得搞了些什么,看了一章计算机网络,搞明白了 TCP/IP 协议族和四层结构,还有就是网络交换的格式,分组交换。<br>
然后看了天宇的 vue 课程,其中的 watch 的对象写法大受裨益,但是我自己写还是没写出来,准备再看看顺便把例子写上<br>
个人博客优化,昨天好像没有优化什么东西,今天有空再试试<br>
题库练习:进度 0</p>
<h2 id="今日工作-2"><a class="markdownIt-Anchor" href="#今日工作-2">#</a> 今日工作</h2>
<p>一、继续天宇的课程,毕竟不知道什么时候会被封,必须尽快看完<br>
二、个人博客有时间就看<br>
三、计算机网络二章节准备开始</p>
<h1 id="610"><a class="markdownIt-Anchor" href="#610">#</a> 6/10</h1>
<h2 id="总结昨日工作-3"><a class="markdownIt-Anchor" href="#总结昨日工作-3">#</a> 总结昨日工作</h2>
<p>昨天把 vue 天宇版快看完了,后面应该是案例和其他东西,然后有几个地方没有搞的很清楚。<br>
第一:全局事件总线 ——$bus 用法<br>
第二:集中状态管理器 ——vueX<br>
第三:网络发送 ——Ajax<br>
第四:本地存储</p>
<h2 id="今日工作-3"><a class="markdownIt-Anchor" href="#今日工作-3">#</a> 今日工作</h2>
<p>一、继续天宇课程,并且把案例做完<br>
二、计算机网络第三章<br>
三、Android 把东西运行起来</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://github.com/siifan168/siifan168.github.io.git/siifan168.github.io/2021/06/07/vue%E5%8D%9A%E5%AE%A2%E8%AE%B0%E5%BD%95/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta itemprop="image" content="/siifan168.github.io/images/avator.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Pthoto个人博客">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/siifan168.github.io/2021/06/07/vue%E5%8D%9A%E5%AE%A2%E8%AE%B0%E5%BD%95/" itemprop="url">vue博客记录</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2021-06-07T10:23:22+08:00">
2021-06-07
</time>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">更新于:</span>
<time title="更新于" itemprop="dateModified" datetime="2021-06-07T10:36:00+08:00">
2021-06-07
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="页面包括"><a class="markdownIt-Anchor" href="#页面包括">#</a> 页面包括</h1>
<p>首页:包括博客文章的总览,右边导航区<br>
博客详情:包括文章内容、字数、热度<br>
个人描述:文字描述</p>
<h1 id="功能"><a class="markdownIt-Anchor" href="#功能">#</a> 功能</h1>
<h2 id="主要功能"><a class="markdownIt-Anchor" href="#主要功能">#</a> 主要功能</h2>
<pre><code>添加文章
删除文章
音乐播放
</code></pre>
<h1 id="数据表"><a class="markdownIt-Anchor" href="#数据表">#</a> 数据表</h1>
<p>文章表:<br>
文章 ID、文章名称、文章最新更新时间、字数、文章内容<br>
音乐表:<br>
音乐 ID、音乐名称、音乐作者、播放地址链接、播放时间、背景图片</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://github.com/siifan168/siifan168.github.io.git/siifan168.github.io/2021/06/07/node/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta itemprop="image" content="/siifan168.github.io/images/avator.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Pthoto个人博客">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/siifan168.github.io/2021/06/07/node/" itemprop="url">node</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2021-06-07T09:38:08+08:00">
2021-06-07
</time>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">更新于:</span>
<time title="更新于" itemprop="dateModified" datetime="2021-06-07T09:38:34+08:00">
2021-06-07
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="学习难点"><a class="markdownIt-Anchor" href="#学习难点">#</a> 学习难点</h1>
<p>计算机网络:<br>
算法:(什么是算法,那种才算算法呢)<br>
数据结构:<br>
个人博客建立:hexo,怎样将自己写的博客部署到网站上<br>
hexo 学习还未开始<br>
搞了个乌龙,我还以为做博客是用 hexo 呢(是真的很简单,只需要把别人的主题引入<br>
然后再修改细致的地方就可以了),结果是可以用 vue 加 node 或者 java 还有数据库呢。</p>
<h1 id="已学习"><a class="markdownIt-Anchor" href="#已学习">#</a> 已学习</h1>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://github.com/siifan168/siifan168.github.io.git/siifan168.github.io/2021/06/06/markdom%E8%AF%AD%E5%8F%A5/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta itemprop="image" content="/siifan168.github.io/images/avator.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Pthoto个人博客">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/siifan168.github.io/2021/06/06/markdom%E8%AF%AD%E5%8F%A5/" itemprop="url">markdom语句</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2021-06-06T14:08:51+08:00">
2021-06-06
</time>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">更新于:</span>
<time title="更新于" itemprop="dateModified" datetime="2021-06-06T14:51:08+08:00">
2021-06-06
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="一级标题"><a class="markdownIt-Anchor" href="#一级标题">#</a> 一级标题</h1>
<h2 id="字体"><a class="markdownIt-Anchor" href="#字体">#</a> 字体</h2>
<p><em>斜体</em><br>
<em>斜体</em><br>
<strong>粗体文本</strong><br>
<strong>粗体文本</strong><br>
<em><strong>粗斜体文本</strong></em><br>
<em><strong>粗斜体文本</strong></em></p>
<h2 id="特殊线"><a class="markdownIt-Anchor" href="#特殊线">#</a> 特殊线</h2>
<p>分隔线</p>
<hr>
<p><code>删除线</code></p>
<!-- <u>下划线</n> -->
<p>[^ 注释]:这是注释,冒号用汉字的</p>
<h2 id="列表"><a class="markdownIt-Anchor" href="#列表">#</a> 列表</h2>
<p>列表:标记后面要添加一个空格<br>
无序列表:</p>
<ul>
<li>列表</li>
<li>列表</li>
<li>列表</li>
</ul>