-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
779 lines (755 loc) · 31.1 KB
/
archive.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
<!DOCTYPE html>
<!--[if IE 6]><html lang="en" class="preIE7 preIE8 preIE9 preIE10 preIE11"><![endif]-->
<!--[if IE 7]><html lang="en" class="preIE8 preIE9 preIE10 preIE11"><![endif]-->
<!--[if IE 8]><html lang="en" class="preIE9 preIE10 preIE11"><![endif]-->
<!--[if IE 9]><html lang="en" class="preIE10 preIE11"><![endif]-->
<!--[if IE 10]><html lang="en" class="preIE11"><![endif]-->
<!--[if gte IE 11]><!--><html lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="google-site-verification" content="m4drKKqATz7-FORrg-GnxSvKEuTSRqEqNMj2-AhEttY" />
<!-- browser/device compatibility stuff -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="HandheldFriendly" content="True"/>
<meta name="format-detection" content="telephone=no">
<!-- page info -->
<title>Archive | mdsh </title>
<meta name="description" content="Here's a list of all posts on this blog, listed newest to oldest.">
<meta name="keywords" content="mdsh, static site generator, project page, open source, blog, news, feed">
<meta name="news_keywords" content="mdsh, static site generator, project page, open source, blog, news, feed">
<meta name="subject" content="mdsh, static site generator, project page, open source, blog, news, feed">
<meta name="generator" content="mdsh">
<meta name="medium" content="blog">
<meta name="copyright" content="© mdsh">
<meta name="language" content="en">
<meta name="robots" content="index,follow">
<meta name="topic" content="mdsh, static site generator, project page, open source, blog, news, feed">
<meta name="owner" content="sc0ttj">
<meta name="pagename" content="Archive">
<!-- Apple -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="mdsh">
<!-- Facebook -->
<meta property="og:title" content="Archive">
<meta property="og:description" content="Here's a list of all posts on this blog, listed newest to oldest.">
<meta property="og:url" content="https://sc0ttj.github.io/mdsh/archive.html">
<meta property="og:site_name" content="mdsh">
<meta property="og:type" content="article">
<meta property="og:locale" content="en">
<meta property="og:image" content="https://sc0ttj.github.io/mdsh/assets/icons/rss.png">
<meta property="article:author" content="sc0ttj">
<meta property="article:section" content="">
<meta property="article:published_time" content="">
<meta property="article:modified_time" content="2020-08-20T21:57:37Z">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Archive">
<meta name="twitter:site" content="@foobar">
<meta name="twitter:creator" content="@foobar">
<meta name="twitter:image" content="https://sc0ttj.github.io/mdsh/assets/icons/rss.png">
<meta name="twitter:domain" content="https://sc0ttj.github.io/mdsh">
<!-- Linked data -->
<script id="meta-ld" type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Article",
"headline": "Archive",
"datePublished": "",
"dateModified": "2020-08-20T21:57:37Z",
"description": "Here's a list of all posts on this blog, listed newest to oldest.",
"keywords": "mdsh, static site generator, project page, open source, blog, news, feed",
"image": {
"@type": "ImageObject",
"height": "512",
"width": "512",
"url": "https://sc0ttj.github.io/mdsh/assets/icons/android-chrome-512x512.png"
},
"author": "sc0ttj",
"publisher": {
"@type": "Organization",
"logo": {
"@type": "ImageObject",
"url": "https://sc0ttj.github.io/mdsh/assets/icons/android-chrome-512x512.png"
},
"name": "mdsh"
},
"mainEntityOfPage": "https://sc0ttj.github.io/mdsh/archive.html#content",
"articleBody": "Here's a list of all posts on this blog, listed newest to oldest."
}
</script>
<script id="breadcrumb-ld" type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":
[
{
"@type": "ListItem",
"position": 1,
"item":
{
"@id": "https://sc0ttj.github.io/mdsh",
"name": "Mdsh"
}
},
{
"@type": "ListItem",
"position": 2,
"item":
{
"@id": "https://sc0ttj.github.io/mdsh/archive.html",
"name": "Archives"
}
}
]
}
</script>
<script id="itemlist-ld" type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ItemList",
"itemListElement":
[
{
"@type": "ListItem",
"position": 1,
"url": "https://sc0ttj.github.io/mdsh/posts/2020/08/20/google-map-in-your-blog-posts.html"
},
{
"@type": "ListItem",
"position": 2,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/10/04/how-to-setup-e-commerce-with-mdsh.html"
},
{
"@type": "ListItem",
"position": 3,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/09/14/embedding-youtube-videos-tweets-codepens-and-other-third-party-content.html"
},
{
"@type": "ListItem",
"position": 4,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/09/14/easier-stylesheet-selection.html"
},
{
"@type": "ListItem",
"position": 5,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/09/13/easier-layout-selection.html"
},
{
"@type": "ListItem",
"position": 6,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/09/13/better-site-rebuilding.html"
},
{
"@type": "ListItem",
"position": 7,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/09/11/permalinks-for-your-posts.html"
},
{
"@type": "ListItem",
"position": 8,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/09/07/better-data-and-template-handling.html"
},
{
"@type": "ListItem",
"position": 9,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/07/13/liquid-filters.html"
},
{
"@type": "ListItem",
"position": 10,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/07/01/faster-site-rebuilds.html"
},
{
"@type": "ListItem",
"position": 11,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/06/29/adding-support-for-more-embedded-languages.html"
},
{
"@type": "ListItem",
"position": 12,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/06/24/new-syntax-for-embedding-shell-script-in-your-markdown.html"
},
{
"@type": "ListItem",
"position": 13,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/05/26/post-excerpts.html"
},
{
"@type": "ListItem",
"position": 14,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/05/26/new-site-navigation.html"
},
{
"@type": "ListItem",
"position": 15,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/05/22/mustache-templating.html"
},
{
"@type": "ListItem",
"position": 16,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/31/more-responsive-pages.html"
},
{
"@type": "ListItem",
"position": 17,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/31/improving-structured-data.html"
},
{
"@type": "ListItem",
"position": 18,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/27/syntax-highlighting-using-pygments.html"
},
{
"@type": "ListItem",
"position": 19,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/16/dynamic-search-page-using-jets.html"
},
{
"@type": "ListItem",
"position": 20,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/10/improving-seo-with-json-ld-breadcrumbs.html"
},
{
"@type": "ListItem",
"position": 21,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/08/unpublishing-pages.html"
},
{
"@type": "ListItem",
"position": 22,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/08/added-a-gitignore-file.html"
},
{
"@type": "ListItem",
"position": 23,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/06/adding-html-and-css-minification.html"
},
{
"@type": "ListItem",
"position": 24,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/04/fixing-code-formatting.html"
},
{
"@type": "ListItem",
"position": 25,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/04/enabling-easier-markdown-re-building.html"
},
{
"@type": "ListItem",
"position": 26,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/03/setting-up-your-blog.html"
},
{
"@type": "ListItem",
"position": 27,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/03/highlighting-search-terms-on-the-page.html"
},
{
"@type": "ListItem",
"position": 28,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/03/custom-css-and-js-for-every-page.html"
},
{
"@type": "ListItem",
"position": 29,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/02/searching-this-website.html"
},
{
"@type": "ListItem",
"position": 30,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/02/fixing-rss-generation.html"
},
{
"@type": "ListItem",
"position": 31,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/03/02/adding-authors-pages.html"
},
{
"@type": "ListItem",
"position": 32,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/24/generating-better-homepages.html"
},
{
"@type": "ListItem",
"position": 33,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/24/adding-a-site-search-feature.html"
},
{
"@type": "ListItem",
"position": 34,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/23/generating-an-xml-sitemap.html"
},
{
"@type": "ListItem",
"position": 35,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/23/generating-an-rss-feed.html"
},
{
"@type": "ListItem",
"position": 36,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/17/adding-a-stylesheet.html"
},
{
"@type": "ListItem",
"position": 37,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/16/missing-post-header.html"
},
{
"@type": "ListItem",
"position": 38,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/16/ifs-and-the-read-command.html"
},
{
"@type": "ListItem",
"position": 39,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/16/auto-generated-post-footers.html"
},
{
"@type": "ListItem",
"position": 40,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/15/it-works-easier-post-editing-and-converting-is-on-the-way.html"
},
{
"@type": "ListItem",
"position": 41,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/15/fixed-code-block-formatting.html"
},
{
"@type": "ListItem",
"position": 42,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/13/how-to-edit-existing-pages.html"
},
{
"@type": "ListItem",
"position": 43,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/13/better-site-headers.html"
},
{
"@type": "ListItem",
"position": 44,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/13/about-mdshell.html"
},
{
"@type": "ListItem",
"position": 45,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/12/using-git-to-manage-your-blog.html"
},
{
"@type": "ListItem",
"position": 46,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/12/tags-and-categories-index-pages.html"
},
{
"@type": "ListItem",
"position": 47,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/12/improving-the-post-headers.html"
},
{
"@type": "ListItem",
"position": 48,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/11/using-sed.html"
},
{
"@type": "ListItem",
"position": 49,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/11/post-headers.html"
},
{
"@type": "ListItem",
"position": 50,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/11/my-new-post.html"
},
{
"@type": "ListItem",
"position": 51,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/11/automatically-add-titles-to-posts.html"
},
{
"@type": "ListItem",
"position": 52,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/11/another-attempt-at-creating-post-headers.html"
},
{
"@type": "ListItem",
"position": 53,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/11/adding-post-headers.html"
},
{
"@type": "ListItem",
"position": 54,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/11/added-an-archive-html-page.html"
},
{
"@type": "ListItem",
"position": 55,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/10/what-to-do-after-creating-a-post.html"
},
{
"@type": "ListItem",
"position": 56,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/10/rofnafen-sh.html"
},
{
"@type": "ListItem",
"position": 57,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/10/markdown-parsing-works-ok-now.html"
},
{
"@type": "ListItem",
"position": 58,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/10/fixing-the-markdown-parsers.html"
},
{
"@type": "ListItem",
"position": 59,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/10/creating-html-pages-with-markdown-pl.html"
},
{
"@type": "ListItem",
"position": 60,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/10/creating-html-from-markdown.html"
},
{
"@type": "ListItem",
"position": 61,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/09/simplifying-blog-structure.html"
},
{
"@type": "ListItem",
"position": 62,
"url": "https://sc0ttj.github.io/mdsh/posts/2019/02/09/app-structure.html"
}
]
}
</script>
<!-- RSS feed -->
<link rel="alternate" type="application/rss+xml" title="Subscribe to mdsh" href="/mdsh/feed.rss">
<!-- SEO stuff -->
<link rel="author" href="/humans.txt">
<link rel="canonical" href="//sc0ttj.github.io/mdsh/archive.html">
<!-- App icons and favicons -->
<link rel="manifest" href="/mdsh/manifest.webmanifest?v=1597960666">
<link rel="icon" type="image/png" sizes="16x16" href="/mdsh/assets/icons/favicon-16x16.png?v=1597960666">
<link rel="icon" type="image/png" sizes="32x32" href="/mdsh/assets/icons/favicon-32x32.png?v=1597960666">
<link rel="icon" type="image/png" sizes="192x192" href="/mdsh/assets/icons/android-chrome-192x192.png?v=1597960666">
<link rel="icon" type="image/vnd.microsoft.icon" href="/mdsh/assets/icons/favicon.ico?v=1597960667">
<link rel="apple-touch-icon" sizes="180x180" href="/mdsh/assets/icons/apple-touch-icon.png?v=1597960667">
<link rel="shortcut icon" href="/mdsh/assets/icons/favicon.ico?v=1597960667">
<link rel="mask-icon" color="#444444" href="/mdsh/assets/icons/safari-pinned-tab.svg?v=1597960667">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-config" content="/mdsh/assets/icons/browserconfig.xml?v=1597960667">
<meta name="theme-color" content="#101010">
<!-- Fallback app name, for legacy browsers -->
<meta name="application-name" content="mdsh">
<!-- prefetch resources -->
<link rel="dns-prefetch" href="//unpkg.com">
<link rel="preconnect" href="//unpkg.com" crossorigin>
<!-- CSS -->
<style>/* inline styles go here */</style>
<link rel="stylesheet" href="/mdsh/assets/css/main.min.css?v=1597960667">
<!-- pygments (syntax highlighting) -->
<link rel="stylesheet" href="/mdsh/assets/css/pygments-monokai-osx.css?v=1597960667">
<!-- JavaScript -->
<!--[if lt IE 9]>
<script>
// enable styling of HTML5 elements in IE < 9
document.createElement('header');
document.createElement('nav');
document.createElement('main');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
document.createElement('picture');
document.createElement('time');
document.createElement('site');
document.createElement('data');
document.createElement('figure');
document.createElement('aside');
document.createElement('address');
</script>
<![endif]-->
<!-- load site NPM deps, if any -->
<script class="unpkg" defer src="//unpkg.com/cash-dom@2.3.9/dist/cash.min.js"></script>
<script class="unpkg" defer src="//unpkg.com/jets@0.14.1/jets.min.js"></script>
<!-- load page-specific NPM deps, if any -->
<!-- main javascript app -->
<script id="appjs" defer src="/mdsh/assets/js/app.js?v=1597960667"></script>
</head>
<!-- start body -->
<body class="no-js category-blog archive">
<div class="main-container">
<div class="site-header">
<h1><a href="/mdsh">mdsh</a></h1>
<input type="search" class="site-search" id="site-search" placeholder="filter.." />
<a class="off-screen skip-to-content" href="#content">Skip to content</a>
<ul>
<li><a href="/mdsh/about.html">about</a></li>
<li><a href="/mdsh/archive.html">archive</a></li>
<li><a href="/mdsh/contact.html">contact</a></li>
<li><a href="/mdsh/search.html">search</a></li> </ul>
</div>
<div class="body-container">
<div id="content" class="main-content">
<h2>Archive</h2>
<ul class="archive-posts posts">
<li>
<time datetime="2020-08-20T21:54:05Z">20 Aug 2020</time> <a href="/mdsh/posts/2020/08/20/google-map-in-your-blog-posts.html">Google map in your blog posts</a>
</li>
<li>
<time datetime="2019-10-04T06:11:12Z">04 Oct 2019</time> <a href="/mdsh/posts/2019/10/04/how-to-setup-e-commerce-with-mdsh.html">How to setup e-commerce with Mdsh</a>
</li>
<li>
<time datetime="2019-09-14T22:45:54Z">14 Sep 2019</time> <a href="/mdsh/posts/2019/09/14/embedding-youtube-videos-tweets-codepens-and-other-third-party-content.html">Embedding Youtube videos, Tweets, Codepens and other third-party content</a>
</li>
<li>
<time datetime="2019-09-14T18:35:35Z">14 Sep 2019</time> <a href="/mdsh/posts/2019/09/14/easier-stylesheet-selection.html">Easier stylesheet selection</a>
</li>
<li>
<time datetime="2019-09-13T06:15:27Z">13 Sep 2019</time> <a href="/mdsh/posts/2019/09/13/easier-layout-selection.html">Easier layout selection</a>
</li>
<li>
<time datetime="2019-09-13T21:17:42Z">13 Sep 2019</time> <a href="/mdsh/posts/2019/09/13/better-site-rebuilding.html">Better site rebuilding</a>
</li>
<li>
<time datetime="2019-09-11T22:31:21Z">11 Sep 2019</time> <a href="/mdsh/posts/2019/09/11/permalinks-for-your-posts.html">Permalinks for your posts</a>
</li>
<li>
<time datetime="2019-09-07T18:29:46Z">07 Sep 2019</time> <a href="/mdsh/posts/2019/09/07/better-data-and-template-handling.html">Better data and template handling</a>
</li>
<li>
<time datetime="2019-07-13T23:56:01Z">13 Jul 2019</time> <a href="/mdsh/posts/2019/07/13/liquid-filters.html">Liquid Filters</a>
</li>
<li>
<time datetime="2019-07-01T20:20:49Z">01 Jul 2019</time> <a href="/mdsh/posts/2019/07/01/faster-site-rebuilds.html">Faster site rebuilds</a>
</li>
<li>
<time datetime="2019-06-29T10:20:21Z">29 Jun 2019</time> <a href="/mdsh/posts/2019/06/29/adding-support-for-more-embedded-languages.html">Adding support for more embedded languages</a>
</li>
<li>
<time datetime="2019-06-24T20:18:10Z">24 Jun 2019</time> <a href="/mdsh/posts/2019/06/24/new-syntax-for-embedding-shell-script-in-your-markdown.html">New syntax for embedding Shell script in your Markdown</a>
</li>
<li>
<time datetime="2019-05-26T17:29:07Z">26 May 2019</time> <a href="/mdsh/posts/2019/05/26/post-excerpts.html">Post excerpts</a>
</li>
<li>
<time datetime="2019-05-26T17:56:41Z">26 May 2019</time> <a href="/mdsh/posts/2019/05/26/new-site-navigation.html">New site navigation</a>
</li>
<li>
<time datetime="2019-05-22T05:42:08Z">22 May 2019</time> <a href="/mdsh/posts/2019/05/22/mustache-templating.html">Mustache templating</a>
</li>
<li>
<time datetime="2019-03-31T06:54:14Z">31 Mar 2019</time> <a href="/mdsh/posts/2019/03/31/more-responsive-pages.html">More responsive pages</a>
</li>
<li>
<time datetime="2019-03-31T05:42:08Z">31 Mar 2019</time> <a href="/mdsh/posts/2019/03/31/improving-structured-data.html">Improving structured data</a>
</li>
<li>
<time datetime="2019-03-27T04:41:25Z">27 Mar 2019</time> <a href="/mdsh/posts/2019/03/27/syntax-highlighting-using-pygments.html">Syntax highlighting using Pygments</a>
</li>
<li>
<time datetime="2019-03-16T09:42:46Z">16 Mar 2019</time> <a href="/mdsh/posts/2019/03/16/dynamic-search-page-using-jets.html">Dynamic search page using Jets</a>
</li>
<li>
<time datetime="2019/03/10">10 Mar 2019</time> <a href="/mdsh/posts/2019/03/10/improving-seo-with-json-ld-breadcrumbs.html">Improving SEO with JSON-LD Breadcrumbs</a>
</li>
<li>
<time datetime="2019/03/08">08 Mar 2019</time> <a href="/mdsh/posts/2019/03/08/unpublishing-pages.html">Unpublishing pages</a>
</li>
<li>
<time datetime="2019/03/08">08 Mar 2019</time> <a href="/mdsh/posts/2019/03/08/added-a-gitignore-file.html">Added a `.gitignore` file</a>
</li>
<li>
<time datetime="2019/03/06">06 Mar 2019</time> <a href="/mdsh/posts/2019/03/06/adding-html-and-css-minification.html">Adding HTML and CSS minification</a>
</li>
<li>
<time datetime="2019/03/04">04 Mar 2019</time> <a href="/mdsh/posts/2019/03/04/fixing-code-formatting.html">Fixing code formatting</a>
</li>
<li>
<time datetime="2019/03/04">04 Mar 2019</time> <a href="/mdsh/posts/2019/03/04/enabling-easier-markdown-re-building.html">Enabling easier Markdown re-building</a>
</li>
<li>
<time datetime="2019/03/03">03 Mar 2019</time> <a href="/mdsh/posts/2019/03/03/setting-up-your-blog.html">Setting up your blog</a>
</li>
<li>
<time datetime="2019/03/03">03 Mar 2019</time> <a href="/mdsh/posts/2019/03/03/highlighting-search-terms-on-the-page.html">Highlighting search terms on the page</a>
</li>
<li>
<time datetime="2019/03/03">03 Mar 2019</time> <a href="/mdsh/posts/2019/03/03/custom-css-and-js-for-every-page.html">Custom CSS and JS for every page</a>
</li>
<li>
<time datetime="2019/03/02">02 Mar 2019</time> <a href="/mdsh/posts/2019/03/02/searching-this-website.html">Searching this website</a>
</li>
<li>
<time datetime="2019/03/02">02 Mar 2019</time> <a href="/mdsh/posts/2019/03/02/fixing-rss-generation.html">Fixing RSS generation</a>
</li>
<li>
<time datetime="2019/03/02">02 Mar 2019</time> <a href="/mdsh/posts/2019/03/02/adding-authors-pages.html">Adding authors pages</a>
</li>
<li>
<time datetime="2019/02/24">24 Feb 2019</time> <a href="/mdsh/posts/2019/02/24/generating-better-homepages.html">Generating better homepages</a>
</li>
<li>
<time datetime="2019/02/24">24 Feb 2019</time> <a href="/mdsh/posts/2019/02/24/adding-a-site-search-feature.html">Adding a site search feature</a>
</li>
<li>
<time datetime="2019/02/23">23 Feb 2019</time> <a href="/mdsh/posts/2019/02/23/generating-an-xml-sitemap.html">Generating an XML sitemap</a>
</li>
<li>
<time datetime="2019/02/23">23 Feb 2019</time> <a href="/mdsh/posts/2019/02/23/generating-an-rss-feed.html">Generating an RSS feed</a>
</li>
<li>
<time datetime="2019/02/17">17 Feb 2019</time> <a href="/mdsh/posts/2019/02/17/adding-a-stylesheet.html">Adding a stylesheet</a>
</li>
<li>
<time datetime="2019/02/16">16 Feb 2019</time> <a href="/mdsh/posts/2019/02/16/missing-post-header.html">Missing post header</a>
</li>
<li>
<time datetime="2019/02/16">16 Feb 2019</time> <a href="/mdsh/posts/2019/02/16/ifs-and-the-read-command.html">IFS and the read command</a>
</li>
<li>
<time datetime="2019/02/16">16 Feb 2019</time> <a href="/mdsh/posts/2019/02/16/auto-generated-post-footers.html">Auto-generated post footers</a>
</li>
<li>
<time datetime="2019/02/15">15 Feb 2019</time> <a href="/mdsh/posts/2019/02/15/it-works-easier-post-editing-and-converting-is-on-the-way.html">It works! Easier post editing and converting is on the way...</a>
</li>
<li>
<time datetime="2019/02/15">15 Feb 2019</time> <a href="/mdsh/posts/2019/02/15/fixed-code-block-formatting.html">Fixed code block formatting</a>
</li>
<li>
<time datetime="2019/02/13">13 Feb 2019</time> <a href="/mdsh/posts/2019/02/13/how-to-edit-existing-pages.html">How to edit existing pages</a>
</li>
<li>
<time datetime="2019/02/13">13 Feb 2019</time> <a href="/mdsh/posts/2019/02/13/better-site-headers.html">Better site headers</a>
</li>
<li>
<time datetime="2019/02/13">13 Feb 2019</time> <a href="/mdsh/posts/2019/02/13/about-mdshell.html">About `mdshell`</a>
</li>
<li>
<time datetime="2019/02/12">12 Feb 2019</time> <a href="/mdsh/posts/2019/02/12/using-git-to-manage-your-blog.html">Using Git to manage your blog</a>
</li>
<li>
<time datetime="2019/02/12">12 Feb 2019</time> <a href="/mdsh/posts/2019/02/12/tags-and-categories-index-pages.html">Tags and Categories index pages</a>
</li>
<li>
<time datetime="2019/02/12">12 Feb 2019</time> <a href="/mdsh/posts/2019/02/12/improving-the-post-headers.html">Improving the post headers</a>
</li>
<li>
<time datetime="2019/02/11">11 Feb 2019</time> <a href="/mdsh/posts/2019/02/11/using-sed.html">Using Sed</a>
</li>
<li>
<time datetime="2019/02/11">11 Feb 2019</time> <a href="/mdsh/posts/2019/02/11/post-headers.html">Post headers</a>
</li>
<li>
<time datetime="2019/02/11">11 Feb 2019</time> <a href="/mdsh/posts/2019/02/11/my-new-post.html">My new post</a>
</li>
<li>
<time datetime="2019/02/11">11 Feb 2019</time> <a href="/mdsh/posts/2019/02/11/automatically-add-titles-to-posts.html">Automatically add titles to posts</a>
</li>
<li>
<time datetime="2019/02/11">11 Feb 2019</time> <a href="/mdsh/posts/2019/02/11/another-attempt-at-creating-post-headers.html">Another attempt at creating post headers</a>
</li>
<li>
<time datetime="2019/02/11">11 Feb 2019</time> <a href="/mdsh/posts/2019/02/11/adding-post-headers.html">Adding post headers</a>
</li>
<li>
<time datetime="2019/02/11">11 Feb 2019</time> <a href="/mdsh/posts/2019/02/11/added-an-archive-html-page.html">Added an archive.html page</a>
</li>
<li>
<time datetime="2019/02/10">10 Feb 2019</time> <a href="/mdsh/posts/2019/02/10/what-to-do-after-creating-a-post.html">What to do after creating a post</a>
</li>
<li>
<time datetime="2019/02/10">10 Feb 2019</time> <a href="/mdsh/posts/2019/02/10/rofnafen-sh.html">Rofnafen.sh</a>
</li>
<li>
<time datetime="2019/02/10">10 Feb 2019</time> <a href="/mdsh/posts/2019/02/10/markdown-parsing-works-ok-now.html">Markdown parsing works OK now</a>
</li>
<li>
<time datetime="2019/02/10">10 Feb 2019</time> <a href="/mdsh/posts/2019/02/10/fixing-the-markdown-parsers.html">Fixing the markdown parsers</a>
</li>
<li>
<time datetime="2019/02/10">10 Feb 2019</time> <a href="/mdsh/posts/2019/02/10/creating-html-pages-with-markdown-pl.html">Creating HTML pages with markdown.pl</a>
</li>
<li>
<time datetime="2019/02/10">10 Feb 2019</time> <a href="/mdsh/posts/2019/02/10/creating-html-from-markdown.html">Creating HTML from Markdown</a>
</li>
<li>
<time datetime="2019/02/09">09 Feb 2019</time> <a href="/mdsh/posts/2019/02/09/simplifying-blog-structure.html">Simplifying blog structure</a>
</li>
<li>
<time datetime="2019/02/09">09 Feb 2019</time> <a href="/mdsh/posts/2019/02/09/app-structure.html">App structure</a>
</li></ul>
</div>
</div>
<ul id="site-navigation" class="site-navigation">
<li class="site-navigation--main-pages">
<h3>Pages</h3>
<ul>
<li><a href="/mdsh/about.html">About</a></li>
<li><a href="/mdsh/archive.html">Archive</a></li>
<li><a href="/mdsh/contact.html">Contact</a></li>
<li><a href="/mdsh/search.html">Search</a></li> </ul>
</li>
<li class="site-navigation--recent-posts">
<h3>Recent posts</h3>
<ul>
<li><a href="/mdsh/posts/2020/08/20/google-map-in-your-blog-posts.html">Google map in your blog posts</a></li>
<li><a href="/mdsh/posts/2019/10/04/how-to-setup-e-commerce-with-mdsh.html">How to setup e-commerce with Mdsh</a></li>
<li><a href="/mdsh/posts/2019/09/14/embedding-youtube-videos-tweets-codepens-and-other-third-party-content.html">Embedding Youtube videos, Tweets, Codepens and other third-party content</a></li>
<li><a href="/mdsh/posts/2019/09/14/easier-stylesheet-selection.html">Easier stylesheet selection</a></li>
<li><a href="/mdsh/posts/2019/09/13/easier-layout-selection.html">Easier layout selection</a></li> </ul>
</li>
<li class="site-navigation--categories">
<h3>Categories</h3>
<ul>
<li>
<a href="/mdsh/categories/blog.html">blog</a>
</li>
<li>
<a href="/mdsh/categories/games.html">games</a>
</li> </ul>
</li>
<li class="site-navigation--tags">
<h3>Tags</h3>
<div>
<a href="/mdsh/tags/bash.html">bash</a>,
<a href="/mdsh/tags/blog.html">blog</a>,
<a href="/mdsh/tags/bsd.html">bsd</a>,
<a href="/mdsh/tags/css.html">css</a>,
<a href="/mdsh/tags/csv.html">csv</a>,
<a href="/mdsh/tags/ecommerce.html">ecommerce</a>,
<a href="/mdsh/tags/embed.html">embed</a>,
<a href="/mdsh/tags/games.html">games</a>,
<a href="/mdsh/tags/git.html">git</a>,
<a href="/mdsh/tags/gnu.html">gnu</a>,
<a href="/mdsh/tags/html.html">html</a>,
<a href="/mdsh/tags/javascript.html">javascript</a>,
<a href="/mdsh/tags/js.html">js</a>,
<a href="/mdsh/tags/json-ld.html">json-ld</a>,
<a href="/mdsh/tags/linux.html">linux</a>,
<a href="/mdsh/tags/liquid-templating.html">liquid-templating</a>,
<a href="/mdsh/tags/maps.html">maps</a>,
<a href="/mdsh/tags/markdown.html">markdown</a>,
<a href="/mdsh/tags/mdsh.html">mdsh</a>,
<a href="/mdsh/tags/mustache.html">mustache</a>,
<a href="/mdsh/tags/oembed.html">oembed</a>,
<a href="/mdsh/tags/osx.html">osx</a>,
<a href="/mdsh/tags/paypal.html">paypal</a>,
<a href="/mdsh/tags/pygments.html">pygments</a>,
<a href="/mdsh/tags/rss.html">rss</a>,
<a href="/mdsh/tags/search.html">search</a>,
<a href="/mdsh/tags/sed.html">sed</a>,
<a href="/mdsh/tags/seo.html">seo</a>,
<a href="/mdsh/tags/shell.html">shell</a>,
<a href="/mdsh/tags/xml.html">xml</a>,
<a href="/mdsh/tags/yaml.html">yaml</a>, </div>
</li>
</ul>
<div class="site-footer">
<p>© mdsh, 2020. Powered by <a href="https://sc0ttj.github.io/mdsh/">mdsh</a></p>
</div>
</div>
</body>
</html>