-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1150 lines (584 loc) · 30.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 lang="en">
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
<title>Markdown Samples</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="/application.fba7e2c0b4d0535aec97a3442d40338651f3354b1ee38f3630059796de18930f.css" integrity="sha256-+6fiwLTQU1rsl6NELUAzhlHzNUse4482MAWXlt4Ykw8=" />
<link rel="icon" type="image/png" href="/images/site/favicon_hub02d7508a1c89b2b7812eab204efeb9a_4223_42x0_resize_box_3.png" />
<meta property="og:url" content="http://localhost:1313/posts/markdown-sample/">
<meta property="og:site_name" content="Stefano's Blog">
<meta property="og:title" content="Markdown Samples">
<meta property="og:description" content="Markdown rendering samples">
<meta property="og:locale" content="en">
<meta property="og:type" content="article">
<meta property="article:section" content="posts">
<meta property="article:published_time" content="2020-06-08T08:06:25+06:00">
<meta property="article:modified_time" content="2020-06-08T08:06:25+06:00">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Markdown Samples">
<meta name="twitter:description" content="Markdown rendering samples">
<meta name="description" content="Markdown rendering samples" />
<script>
theme = localStorage.getItem('darkmode:color-scheme') || 'system';
if (theme == 'system') {
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
theme = 'dark';
} else {
theme = 'light';
}
}
document.documentElement.setAttribute('data-theme', theme);
</script>
</head>
<body class="type-posts kind-page" data-bs-spy="scroll" data-bs-target="#TableOfContents" data-bs-offset="80">
<div class="container-fluid bg-secondary wrapper">
<nav class="navbar navbar-expand-xl top-navbar shadow " id="top-navbar">
<div class="container">
<button class="navbar-toggler navbar-light" id="sidebar-toggler" type="button">
<i data-feather="sidebar"></i>
</button>
<a class="navbar-brand" href="/">
<img src="/images/site/main-logo_hu9ad2f25a877e6fef77c7a3dbef5094ad_6881_42x0_resize_box_3.png" id="logo" alt="Logo">
Stefano's Blog</a>
<button
class="navbar-toggler navbar-light"
id="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#top-nav-items"
aria-label="menu"
>
<i data-feather="menu"></i>
</button>
<div class="collapse navbar-collapse dynamic-navbar" id="top-nav-items">
<ul class="nav navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="/#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#experiences">Experiences</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#education">Education</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">More</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="/#projects">Projects</a>
<a class="dropdown-item" href="/#publications">Publications</a>
<a class="dropdown-item" href="/#featured-posts">Featured Posts</a>
<a class="dropdown-item" href="/#recent-posts">Recent Posts</a>
<a class="dropdown-item" href="/#accomplishments">Accomplishments</a>
<a class="dropdown-item" href="/#achievements">Achievements</a>
</div>
</li>
<div id="top-navbar-divider"></div>
<li class="nav-item">
<a class="nav-link" id="blog-link" href="/posts">Posts</a>
</li>
<li class="nav-item">
<a class="nav-link" id="note-link" href="/notes">Notes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://toha-guides.netlify.app/posts/">Docs</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="languageSelector" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="flag-icon flag-icon-gb"></span>
English
</a>
<div class="dropdown-menu" aria-labelledby="languageSelector">
<a class="dropdown-item nav-link languages-item" href="/posts/markdown-sample">
<span class="flag-icon flag-icon-gb"></span>
English
</a>
<a class="dropdown-item nav-link languages-item" href="/bn/posts/markdown-sample">
<span class="flag-icon flag-icon-bd"></span>
Italiano
</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="themeSelector" role="button"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img id="navbar-theme-icon-svg" class="theme-icon" src="/icons/moon-svgrepo-com.svg" width=20 alt="Dark Theme">
</a>
<div id="themeMenu" class="dropdown-menu dropdown-menu-icons-only" aria-labelledby="themeSelector">
<a class="dropdown-item nav-link" href="#" data-scheme="light">
<img class="theme-icon" src="/icons/sun-svgrepo-com.svg" width=20 alt="Light Theme">
</a>
<a class="dropdown-item nav-link" href="#" data-scheme="dark">
<img class="theme-icon" src="/icons/moon-svgrepo-com.svg" width=20 alt="Dark Theme">
</a>
<a class="dropdown-item nav-link" href="#" data-scheme="system">
<img class="theme-icon" src="/icons/computer-svgrepo-com.svg" width=20 alt="System Theme">
</a>
</div>
</li>
</ul>
</div>
</div>
<img src="/images/site/main-logo_hu9ad2f25a877e6fef77c7a3dbef5094ad_6881_42x0_resize_box_3.png" class="d-none" id="main-logo" alt="Logo">
<img src="/images/site/inverted-logo_hub02d7508a1c89b2b7812eab204efeb9a_4223_42x0_resize_box_3.png" class="d-none" id="inverted-logo" alt="Inverted Logo">
</nav>
<section class="sidebar-section" id="sidebar-section">
<div class="sidebar-holder">
<div class="sidebar" id="sidebar">
<form class="mx-auto" method="get" action="/search">
<input type="text" name="keyword" value="" placeholder="Search" data-search="" id="search-box" />
</form>
<div class="sidebar-tree">
<ul class="tree" id="tree">
<li id="list-heading"><a href="/posts/" data-filter="all">Posts</a></li>
<div class="subtree">
<li><a class=" list-link" href="/posts/introduction/" title="Introduction">Introduction</a></li>
<li>
<i data-feather="plus-circle"></i><a class=" list-link" href="/posts/category/"> Category</a>
<ul class="">
<li>
<i data-feather="plus-circle"></i><a class=" list-link" href="/posts/category/sub-category/"> Sub-Category</a>
<ul class="">
<li><a class=" list-link" href="/posts/category/sub-category/rich-content/" title="Rich Content">Rich Content</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="active list-link" href="/posts/markdown-sample/" title="Markdown Sample">Markdown Sample</a></li>
<li><a class=" list-link" href="/posts/shortcodes/" title="Shortcodes Sample">Shortcodes Sample</a></li>
</div>
</ul>
</div>
</div>
</div>
</section>
<section class="content-section" id="content-section">
<div class="content">
<div class="container p-0 read-area">
<div class="hero-area col-sm-12" id="hero-area" style='background-image: url(/posts/markdown-sample/hero.svg);'>
</div>
<div class="page-content">
<div class="author-profile ms-auto align-self-lg-center">
<img class="rounded-circle" src='/images/author/jessica_hub27b17043e33bca6a82d234af88c10a1_6153_120x120_fit_box_3.png' alt="Author Image">
<h5 class="author-name">Jessica Jonas</h5>
<p class="text-muted">Monday, June 8, 2020 | 3 minutes</p>
</div>
<div class="title">
<h1>Markdown Samples</h1>
</div>
<div class="tags">
<ul style="padding-left: 0;">
</ul>
</div>
<div class="post-content" id="post-content">
<p>This is a sample post intended to test the followings:</p>
<ul>
<li>A different post author.</li>
<li>Table of contents.</li>
<li>Markdown content rendering.</li>
<li>Math rendering.</li>
<li>Emoji rendering.</li>
</ul>
<hr>
<h1 id="markdown-syntax-rendering">Markdown Syntax Rendering</h1>
<h2 id="headings">Headings</h2>
<p>The following HTML <code><h1></code>—<code><h6></code> elements represent six levels of section headings. <code><h1></code> is the highest section level while <code><h6></code> is the lowest.</p>
<h1 id="h1">H1</h1>
<h2 id="h2">H2</h2>
<h3 id="h3">H3</h3>
<h4 id="h4">H4</h4>
<h5 id="h5">H5</h5>
<h6 id="h6">H6</h6>
<h2 id="paragraph">Paragraph</h2>
<p>Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.</p>
<p>Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.</p>
<h2 id="blockquotes">Blockquotes</h2>
<p>The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a <code>footer</code> or <code>cite</code> element, and optionally with in-line changes such as annotations and abbreviations.</p>
<h4 id="blockquote-without-attribution">Blockquote without attribution</h4>
<blockquote>
<p>Tiam, ad mint andaepu dandae nostion secatur sequo quae.
<strong>Note</strong> that you can use <em>Markdown syntax</em> within a blockquote.</p>
</blockquote>
<h4 id="blockquote-with-attribution">Blockquote with attribution</h4>
<blockquote>
<p>Don’t communicate by sharing memory, share memory by communicating.</p>
— <cite>Rob Pike<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup></cite></p>
</blockquote>
<h2 id="tables">Tables</h2>
<p>Tables aren’t part of the core Markdown spec, but Hugo supports supports them out-of-the-box.</p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bob</td>
<td>27</td>
</tr>
<tr>
<td>Alice</td>
<td>23</td>
</tr>
</tbody>
</table>
<h4 id="inline-markdown-within-tables">Inline Markdown within tables</h4>
<table>
<thead>
<tr>
<th>Inline </th>
<th>Markdown </th>
<th>In </th>
<th>Table</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>italics</em></td>
<td><strong>bold</strong></td>
<td><del>strikethrough</del> </td>
<td><code>code</code></td>
</tr>
</tbody>
</table>
<h2 id="code-blocks">Code Blocks</h2>
<h4 id="code-block-with-backticks">Code block with backticks</h4>
<pre tabindex="0"><code>html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
</code></pre><h4 id="code-block-indented-with-four-spaces">Code block indented with four spaces</h4>
<pre><code><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
</code></pre>
<h4 id="code-block-with-hugos-internal-highlight-shortcode">Code block with Hugo’s internal highlight shortcode</h4>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span><span style="color:#75715e"><!DOCTYPE html></span>
</span></span><span style="display:flex;"><span><<span style="color:#f92672">html</span> <span style="color:#a6e22e">lang</span><span style="color:#f92672">=</span><span style="color:#e6db74">"en"</span>>
</span></span><span style="display:flex;"><span><<span style="color:#f92672">head</span>>
</span></span><span style="display:flex;"><span> <<span style="color:#f92672">meta</span> <span style="color:#a6e22e">charset</span><span style="color:#f92672">=</span><span style="color:#e6db74">"UTF-8"</span>>
</span></span><span style="display:flex;"><span> <<span style="color:#f92672">title</span>>Example HTML5 Document</<span style="color:#f92672">title</span>>
</span></span><span style="display:flex;"><span></<span style="color:#f92672">head</span>>
</span></span><span style="display:flex;"><span><<span style="color:#f92672">body</span>>
</span></span><span style="display:flex;"><span> <<span style="color:#f92672">p</span>>Test</<span style="color:#f92672">p</span>>
</span></span><span style="display:flex;"><span></<span style="color:#f92672">body</span>>
</span></span><span style="display:flex;"><span></<span style="color:#f92672">html</span>></span></span></code></pre></div>
<h2 id="list-types">List Types</h2>
<h4 id="ordered-list">Ordered List</h4>
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
<h4 id="unordered-list">Unordered List</h4>
<ul>
<li>List item</li>
<li>Another item</li>
<li>And another item</li>
</ul>
<h4 id="nested-list">Nested list</h4>
<ul>
<li>Fruit
<ul>
<li>Apple</li>
<li>Orange</li>
<li>Banana</li>
</ul>
</li>
<li>Dairy
<ul>
<li>Milk</li>
<li>Cheese</li>
</ul>
</li>
</ul>
<h2 id="other-elements--abbr-sub-sup-kbd-mark">Other Elements — abbr, sub, sup, kbd, mark</h2>
<p><abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.</p>
<p>H<sub>2</sub>O</p>
<p>X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup></p>
<p>Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.</p>
<p>Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.</p>
<hr>
<h2 id="math-rendering">Math Rendering</h2>
<p>Block math:
$$
\varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
$$</p>
<hr>
<h2 id="emoji-rendering">Emoji Rendering</h2>
<p><span class="nowrap"><span class="emojify">🙈</span> <code>:see_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙉</span> <code>:hear_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙊</span> <code>:speak_no_evil:</code></span></p>
<br><div class="footnotes" role="doc-endnotes">
<hr>
<ol>
<li id="fn:1">
<p>The above quote is excerpted from Rob Pike’s <a href="https://www.youtube.com/watch?v=PAAkCSZUG1c" target="_blank" rel="noopener">talk</a> during Gopherfest, November 18, 2015. <a href="#fnref:1" class="footnote-backref" role="doc-backlink">↩︎</a></p>
</li>
</ol>
</div>
</div>
<div class="row ps-3 pe-3">
<div class="col-md-6 share-buttons">
<strong>Share on:</strong>
<a class="btn icon-button bg-facebook" href="https://www.facebook.com/sharer.php?u=http%3a%2f%2flocalhost%3a1313%2fposts%2fmarkdown-sample%2f" target="_blank">
<i class="fab fa-facebook"></i>
</a>
<a class="btn icon-button bg-twitter" href="https://twitter.com/share?url=http%3a%2f%2flocalhost%3a1313%2fposts%2fmarkdown-sample%2f&text=Markdown%20Samples&via=Stefano%27s%20Blog" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a class="btn icon-button bg-reddit" href="https://reddit.com/submit?url=http%3a%2f%2flocalhost%3a1313%2fposts%2fmarkdown-sample%2f&title=Markdown%20Samples" target="_blank">
<i class="fab fa-reddit"></i>
</a>
<a class="btn icon-button bg-linkedin" href="https://www.linkedin.com/shareArticle?url=http%3a%2f%2flocalhost%3a1313%2fposts%2fmarkdown-sample%2f&title=Markdown%20Samples" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a class="btn icon-button bg-whatsapp" href="https://api.whatsapp.com/send?text=Markdown%20Samples http%3a%2f%2flocalhost%3a1313%2fposts%2fmarkdown-sample%2f" target="_blank">
<i class="fab fa-whatsapp"></i>
</a>
<a class="btn icon-button" href="mailto:?subject=Markdown%20Samples&body=http%3a%2f%2flocalhost%3a1313%2fposts%2fmarkdown-sample%2f" target="_blank">
<i class="fas fa-envelope-open-text"></i>
</a>
</div>
<div class="col-md-6 btn-improve-page">
<a href="https://github.com/hugo-toha/hugo-toha.github.io/edit/main/content/posts%5cmarkdown-sample%5cindex.md" title="Improve this page" target="_blank" rel="noopener">
<i class="fas fa-code-branch"></i>
Improve this page
</a>
</div>
</div>
<hr />
<div class="row next-prev-navigator">
<div class="col-md-6 previous-article">
<a href="/posts/category/sub-category/rich-content/" title="Rich Content" class="btn filled-button">
<div><i class="fas fa-chevron-circle-left"></i> Prev</div>
<div class="next-prev-text">Rich Content</div>
</a>
</div>
<div class="col-md-6 next-article">
<a href="/posts/shortcodes/" title="Shortcodes Samples" class="btn filled-button">
<div>Next <i class="fas fa-chevron-circle-right"></i></div>
<div class="next-prev-text">Shortcodes Samples</div>
</a>
</div>
</div>
<hr />
</div>
</div>
</div>
<a id="scroll-to-top" class="btn" type="button" data-bs-toggle="tooltip" data-bs-placement="left" title="Scroll to top">
<i class="fas fa-chevron-circle-up"></i>
</a>
</section>
<section class="toc-section" id="toc-section">
<div class="toc-holder">
<h5 class="text-center ps-3">Table of Contents</h5>
<hr>
<div class="toc">
<nav id="TableOfContents">
<ul>
<li><a href="#headings">Headings</a></li>
</ul>
<ul>
<li><a href="#h2">H2</a>
<ul>
<li><a href="#h3">H3</a>
<ul>
<li><a href="#h4">H4</a>
<ul>
<li><a href="#h5">H5</a>
<ul>
<li><a href="#h6">H6</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li><a href="#paragraph">Paragraph</a></li>
<li><a href="#blockquotes">Blockquotes</a>
<ul>
<li>
<ul>
<li><a href="#blockquote-without-attribution">Blockquote without attribution</a></li>
<li><a href="#blockquote-with-attribution">Blockquote with attribution</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#tables">Tables</a>
<ul>
<li>
<ul>
<li><a href="#inline-markdown-within-tables">Inline Markdown within tables</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#code-blocks">Code Blocks</a>
<ul>
<li>
<ul>
<li><a href="#code-block-with-backticks">Code block with backticks</a></li>
<li><a href="#code-block-indented-with-four-spaces">Code block indented with four spaces</a></li>
<li><a href="#code-block-with-hugos-internal-highlight-shortcode">Code block with Hugo’s internal highlight shortcode</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#list-types">List Types</a>
<ul>
<li>
<ul>
<li><a href="#ordered-list">Ordered List</a></li>
<li><a href="#unordered-list">Unordered List</a></li>
<li><a href="#nested-list">Nested list</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#other-elements--abbr-sub-sup-kbd-mark">Other Elements — abbr, sub, sup, kbd, mark</a></li>
<li><a href="#math-rendering">Math Rendering</a></li>
<li><a href="#emoji-rendering">Emoji Rendering</a></li>
</ul>
</nav>
</div>
</div>
</section>
</div>
<footer id="footer" class="container-fluid text-center align-content-center footer pb-2">
<div class="container pt-5">
<div class="row text-start">
<div class="col-md-4 col-sm-12">
<h5>Navigation</h5>
<ul>
<li class="nav-item">
<a class="smooth-scroll" href="http://localhost:1313/#about">About</a>
</li>
<li class="nav-item">
<a class="smooth-scroll" href="http://localhost:1313/#skills">Skills</a>
</li>
<li class="nav-item">
<a class="smooth-scroll" href="http://localhost:1313/#experiences">Experiences</a>
</li>
<li class="nav-item">
<a class="smooth-scroll" href="http://localhost:1313/#education">Education</a>
</li>
<li class="nav-item">
<a class="smooth-scroll" href="http://localhost:1313/#projects">Projects</a>
</li>
<li class="nav-item">
<a class="smooth-scroll" href="http://localhost:1313/#publications">Publications</a>
</li>
<li class="nav-item">
<a class="smooth-scroll" href="http://localhost:1313/#featured-posts">Featured Posts</a>
</li>