madness 1.1.4 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78a49ca36d07d11662ba98136593790a316586d4f17cff8bd7a3febc02916c01
4
- data.tar.gz: 03adaa519d407baa99337a9eae0beba3edfcb91c22f73fe54049d78d3fd0f103
3
+ metadata.gz: 8d325be34cf8419bce877dd6e64707ff678131f334a5be4e7843f24ae097d6ca
4
+ data.tar.gz: 1009807cc7b9ebf4823029cd2a08c45e77d1c3459ce14417a29845ec15d3548d
5
5
  SHA512:
6
- metadata.gz: 88b64055acfc24a132c11bfcc91e81dcbef93343c3b1c857921fb0257befd21d85c3c9651891c54eabb9bfd558e21e4f299fc706dd4f8655e7b2dc426eb388f7
7
- data.tar.gz: a155163d534295118fc2082a0bce08533bfffe06a45b934ea68b6d7deffb301075b8aff1635bb6d95e841a479eaafa36055c7f6f650a30e153f72792425016d8
6
+ metadata.gz: 64289788a34000cd60f000e753f8d0efd2a71b9f65085640a4e6fdc269e002f5c5845d9dddcb1b77125fb6f821a7c24be936fbada3f4c816de2eb1274035e4c6
7
+ data.tar.gz: f6410bffc01951f1a1be37a3dd405347842400eae1a432c58566fa5e48ca694e00f77bea1d9e74d4e78191adf047977812deba2f8a7c25c0ca8bd683e7e64af3
data/README.md CHANGED
@@ -78,9 +78,6 @@ Madness expects to be executed in a documentation directory.
78
78
  A documentation directory contains only markdown files (`*.md`) and sub
79
79
  directories that contain more markdown files.
80
80
 
81
- The server will consider the file `index.md` or `README.md` in any directory as
82
- the main file describing this directory, where `index.md` has priority.
83
-
84
81
  The navigation sidebar will show all the sub directories and files in the same
85
82
  directory as the viewed file.
86
83
 
@@ -129,6 +126,16 @@ bind: 0.0.0.0
129
126
  # base_uri: /docs
130
127
  base_uri: ~
131
128
 
129
+ # set the underlying markdown renderer:
130
+ # renderer: redcarpet # default renderer
131
+ # renderer: pandoc # pandoc renderer, requires pandoc command
132
+ renderer: redcarpet
133
+
134
+ # choose navigation sort order:
135
+ # sort_order: dirs_first # alphabetic directories then alphabetic files
136
+ # sort_order: mixed # alphabetic regardless of type
137
+ sort_order: dirs_first
138
+
132
139
  # enable sidebar
133
140
  sidebar: true
134
141
 
@@ -195,6 +202,23 @@ exclude: ['^[a-z_\-0-9]+$']
195
202
 
196
203
  ## Features
197
204
 
205
+ ### Cover Pages
206
+
207
+ Cover pages are specially named markdown files that serve as the introduction
208
+ to the contents of a specific directory.
209
+
210
+ The server will consider any of the following files as cover pages (prioritized):
211
+
212
+ - A markdown file with the same name as the directory (adjacent to it).
213
+ - `index.md`
214
+ - `README.md`
215
+
216
+ For example, for a directory named "API Documentation":
217
+
218
+ - `/API Documentation.md`
219
+ - `/API Documentation/index.md`
220
+ - `/API Documentation/README.md`
221
+
198
222
  ### Search
199
223
 
200
224
  Madness comes with a full text search page.
@@ -286,6 +310,9 @@ will be omitted when they are displayed.
286
310
  └── 2. Another file or folder
287
311
  ```
288
312
 
313
+ Note that by default, directories will appear above files. If you wish to
314
+ change this, set `sort_order: mixed` in your configuration file.
315
+
289
316
  ### Displaying Additional File Types
290
317
 
291
318
  If you wish the navigation and search features to also show other documents
@@ -242,6 +242,203 @@ nav {
242
242
  height: 90px;
243
243
  display: block; }
244
244
 
245
+ pre > code.sourceCode {
246
+ white-space: pre;
247
+ position: relative; }
248
+
249
+ pre > code.sourceCode > span {
250
+ line-height: 1.25; }
251
+
252
+ pre > code.sourceCode > span:empty {
253
+ height: 1.2em; }
254
+
255
+ .sourceCode {
256
+ overflow: visible; }
257
+
258
+ code.sourceCode > span {
259
+ color: inherit;
260
+ text-decoration: inherit; }
261
+
262
+ div.sourceCode {
263
+ margin: 1em 0; }
264
+
265
+ pre.sourceCode {
266
+ margin: 0; }
267
+
268
+ @media screen {
269
+ div.sourceCode {
270
+ overflow: auto; } }
271
+
272
+ @media print {
273
+ pre > code.sourceCode {
274
+ white-space: pre-wrap; }
275
+ pre > code.sourceCode > span {
276
+ text-indent: -5em;
277
+ padding-left: 5em; } }
278
+
279
+ pre.numberSource code {
280
+ counter-reset: source-line 0; }
281
+
282
+ pre.numberSource code > span {
283
+ position: relative;
284
+ left: -4em;
285
+ counter-increment: source-line; }
286
+
287
+ pre.numberSource code > span > a:first-child::before {
288
+ content: counter(source-line);
289
+ position: relative;
290
+ left: -1em;
291
+ text-align: right;
292
+ vertical-align: baseline;
293
+ border: none;
294
+ display: inline-block;
295
+ -webkit-touch-callout: none;
296
+ -webkit-user-select: none;
297
+ -khtml-user-select: none;
298
+ -moz-user-select: none;
299
+ -ms-user-select: none;
300
+ user-select: none;
301
+ padding: 0 4px;
302
+ width: 4em;
303
+ color: #aaaaaa; }
304
+
305
+ pre.numberSource {
306
+ margin-left: 3em;
307
+ border-left: 1px solid #aaaaaa;
308
+ padding-left: 4px; }
309
+
310
+ @media screen {
311
+ pre > code.sourceCode > span > a:first-child::before {
312
+ text-decoration: underline; } }
313
+
314
+ code span.al {
315
+ color: #ff0000;
316
+ font-weight: bold; }
317
+
318
+ /* Alert */
319
+ code span.an {
320
+ color: #60a0b0;
321
+ font-weight: bold;
322
+ font-style: italic; }
323
+
324
+ /* Annotation */
325
+ code span.at {
326
+ color: #7d9029; }
327
+
328
+ /* Attribute */
329
+ code span.bn {
330
+ color: #40a070; }
331
+
332
+ /* BaseN */
333
+ code span.bu {
334
+ color: #008000; }
335
+
336
+ /* BuiltIn */
337
+ code span.cf {
338
+ color: #007020;
339
+ font-weight: bold; }
340
+
341
+ /* ControlFlow */
342
+ code span.ch {
343
+ color: #4070a0; }
344
+
345
+ /* Char */
346
+ code span.cn {
347
+ color: #880000; }
348
+
349
+ /* Constant */
350
+ code span.co {
351
+ color: #60a0b0;
352
+ font-style: italic; }
353
+
354
+ /* Comment */
355
+ code span.cv {
356
+ color: #60a0b0;
357
+ font-weight: bold;
358
+ font-style: italic; }
359
+
360
+ /* CommentVar */
361
+ code span.do {
362
+ color: #ba2121;
363
+ font-style: italic; }
364
+
365
+ /* Documentation */
366
+ code span.dt {
367
+ color: #902000; }
368
+
369
+ /* DataType */
370
+ code span.dv {
371
+ color: #40a070; }
372
+
373
+ /* DecVal */
374
+ code span.er {
375
+ color: #ff0000;
376
+ font-weight: bold; }
377
+
378
+ /* Error */
379
+ /* Extension */
380
+ code span.fl {
381
+ color: #40a070; }
382
+
383
+ /* Float */
384
+ code span.fu {
385
+ color: #06287e; }
386
+
387
+ /* Function */
388
+ code span.im {
389
+ color: #008000;
390
+ font-weight: bold; }
391
+
392
+ /* Import */
393
+ code span.in {
394
+ color: #60a0b0;
395
+ font-weight: bold;
396
+ font-style: italic; }
397
+
398
+ /* Information */
399
+ code span.kw {
400
+ color: #007020;
401
+ font-weight: bold; }
402
+
403
+ /* Keyword */
404
+ code span.op {
405
+ color: #666666; }
406
+
407
+ /* Operator */
408
+ code span.ot {
409
+ color: #007020; }
410
+
411
+ /* Other */
412
+ code span.pp {
413
+ color: #bc7a00; }
414
+
415
+ /* Preprocessor */
416
+ code span.sc {
417
+ color: #4070a0; }
418
+
419
+ /* SpecialChar */
420
+ code span.ss {
421
+ color: #bb6688; }
422
+
423
+ /* SpecialString */
424
+ code span.st {
425
+ color: #4070a0; }
426
+
427
+ /* String */
428
+ code span.va {
429
+ color: #19177c; }
430
+
431
+ /* Variable */
432
+ code span.vs {
433
+ color: #4070a0; }
434
+
435
+ /* VerbatimString */
436
+ code span.wa {
437
+ color: #60a0b0;
438
+ font-weight: bold;
439
+ font-style: italic; }
440
+
441
+ /* Warning */
245
442
  .highlight table td {
246
443
  padding: 5px; }
247
444
 
@@ -467,12 +664,6 @@ nav {
467
664
  background: var(--scrollbar-color);
468
665
  -webkit-border-radius: 3px; }
469
666
 
470
- .source-link {
471
- margin-top: 13px;
472
- float: right; }
473
- @media only screen and (max-width: 767px) {
474
- .source-link {
475
- display: none; } }
476
667
  @media print {
477
668
  #mobile-search {
478
669
  display: none; } }
@@ -504,6 +695,12 @@ nav {
504
695
  .search-field:focus {
505
696
  border-color: var(--search-field-focused-border-color); }
506
697
 
698
+ .source-link {
699
+ margin-top: 13px;
700
+ float: right; }
701
+ @media only screen and (max-width: 767px) {
702
+ .source-link {
703
+ display: none; } }
507
704
  table {
508
705
  border-spacing: 0;
509
706
  border-collapse: collapse;
@@ -16,17 +16,18 @@
16
16
  "_line.scss",
17
17
  "_list.scss",
18
18
  "_nav.scss",
19
+ "_pandoc_code.scss",
19
20
  "_rouge.scss",
20
21
  "_scrollbar.scss",
21
- "_source_link.scss",
22
22
  "_search.scss",
23
+ "_source_link.scss",
23
24
  "_table.scss",
24
25
  "_typography.scss",
25
26
  "_general.scss"
26
27
  ],
27
28
  "sourcesContent": [
28
29
  "@import \"manifest\";\n\nbody {\n background-color: var(--background-color);\n max-width: 1400px;\n margin: 0 auto;\n}\n\n.main {\n padding: 0 20px 100px 20px;\n\n &:before, &:after {\n display: table;\n content: \"\";\n }\n\n &:after {\n // clear: both;\n }\n\n @include desktop {\n &.with-sidebar {\n min-height: 100vh;\n margin-left: 300px;\n }\n }\n \n &.without-sidebar {\n max-width: 980px;\n margin: 0 auto;\n }\n}\n",
29
- "@import \"variables\";\n\n@import \"mixins\";\n\n@import \"anchor\";\n@import \"breadcrumbs\";\n@import \"code\";\n@import \"fontello\";\n@import \"footnotes\";\n@import \"image\";\n@import \"keyboard\";\n@import \"line\";\n@import \"list\";\n@import \"nav\";\n@import \"rouge\";\n@import \"scrollbar\";\n@import \"source_link\";\n@import \"search\";\n@import \"table\";\n@import \"typography\";\n\n// Last\n@import \"general\";",
30
+ "@import \"variables\";\n\n@import \"mixins\";\n\n@import \"anchor\";\n@import \"breadcrumbs\";\n@import \"code\";\n@import \"fontello\";\n@import \"footnotes\";\n@import \"image\";\n@import \"keyboard\";\n@import \"line\";\n@import \"list\";\n@import \"nav\";\n@import \"pandoc_code\";\n@import \"rouge\";\n@import \"scrollbar\";\n@import \"search\";\n@import \"source_link\";\n@import \"table\";\n@import \"typography\";\n\n// Last\n@import \"general\";",
30
31
  ":root {\n\n --background-color: #fff;\n --blockquote-border-color: #ddd;\n --blockquote-color: #777;\n --breadcrumbs-border-color: #ccc;\n --clipboard-button-bg-color: white;\n --clipboard-button-border-color: #ccc;\n --font-color: #333;\n --footnotes-color: #666;\n --h1-border-color: #eee;\n --h1-color: #333;\n --h2-border-color: #eee;\n --h2-color: #333;\n --h3-color: #333;\n --h4-color: #333;\n --h5-color: #333;\n --h6-color: #777;\n --highlight-color: palegreen;\n --hr-color: #ddd;\n --inline-code-bg-color: #eee;\n --kbd-bg-color: #fcfcfc;\n --kbd-border-color: #ccc;\n --kbd-color: #111;\n --kbd-shadow-color: #bbb;\n --link-color: #4078c0;\n --quiet-color: #777;\n --scrollbar-color: #ccc;\n --search-field-border-color: #ccc;\n --search-field-focused-border-color: #4078c0;\n --sidebar-bg-color: #fff;\n --sidebar-border-color: #ddd;\n --sidebar-border-right-color: #ddd;\n --table-alt-row-bg-color: transparent;\n --table-bg-color: transparent;\n --table-border-color: #ddd;\n --table-header-bg-color: transparent;\n --table-row-bg-color: transparent;\n\n}",
31
32
  "// Mixins\n$breakpoint: 768px;\n\n@mixin mobile {\n\t@media only screen and (max-width: $breakpoint - 1) {\n\t\t@content;\n\t}\n}\n\n@mixin desktop {\n\t@media only screen and (min-width: $breakpoint) {\n\t\t@content;\n\t}\n}\n",
32
33
  "a {\n color: var(--link-color);\n text-decoration: none;\n\n &:active, &:hover, &:focus {\n outline-width: 0;\n text-decoration: underline;\n }\n\n &:not([href]) {\n color: inherit;\n text-decoration: none;\n }\n\n &.icon {\n color: inherit;\n }\n}",
@@ -39,14 +40,15 @@
39
40
  "hr {\n border: 0;\n border-top: 2px solid var(--hr-color);\n}",
40
41
  "ul, ol {\n margin-top: 0;\n margin-bottom: 0;\n\n padding-left: 2em;\n}\n\nol ol, ul ol {\n list-style-type: lower-roman;\n}\n\nul ul ol, ul ol ol, ol ul ol, ol ol ol {\n list-style-type: lower-alpha;\n}\n\nul ul, ul ol, ol ol, ol ul {\n margin-top: 0;\n margin-bottom: 0;\n}\n\ndd {\n margin-left: 0;\n}\n\ndl {\n padding: 0;\n\n dt {\n padding: 0;\n margin-top: 16px;\n font-size: 1em;\n font-style: italic;\n font-weight: bold;\n }\n\n dd {\n padding: 0 16px;\n margin-bottom: 16px;\n }\n}\n\nli>p {\n margin-top: 16px;\n}\n",
41
42
  "nav {\n @media print {\n display: none;\n }\n\n @include mobile {\n display: none;\n }\n\n background: var(--sidebar-bg-color);\n border-right: 1px solid var(--sidebar-border-right-color);\n\n height: 100vh;\n width: 300px;\n overflow-y: auto;\n position: fixed;\n\n .icon-bar {\n background: var(--sidebar-bg-color);\n border-bottom: 1px dotted var(--sidebar-border-color);\n position: sticky;\n top: 0;\n z-index: 1;\n }\n\n a.document, span.document, .caption {\n border-bottom: 1px dotted var(--sidebar-border-color);\n // &:hover {\n // background: #e4e4e4;\n // }\n\n display: block;\n padding: 5px 20px 5px 30px;\n }\n\n a.icon {\n display: inline-block;\n font-size: 1.5em;\n width: 50%;\n padding: 3px 20px 3px 30px;\n &.wide {\n width: 100%\n }\n // &:hover {\n // background: #e4e4e4;\n // }\n }\n\n\n &:after {\n content: \"\";\n height: 90px;\n display: block;\n }\n}\n",
43
+ "pre > code.sourceCode { white-space: pre; position: relative; }\npre > code.sourceCode > span { line-height: 1.25; }\npre > code.sourceCode > span:empty { height: 1.2em; }\n.sourceCode { overflow: visible; }\ncode.sourceCode > span { color: inherit; text-decoration: inherit; }\ndiv.sourceCode { margin: 1em 0; }\npre.sourceCode { margin: 0; }\n@media screen {\ndiv.sourceCode { overflow: auto; }\n}\n@media print {\npre > code.sourceCode { white-space: pre-wrap; }\npre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }\n}\npre.numberSource code\n { counter-reset: source-line 0; }\npre.numberSource code > span\n { position: relative; left: -4em; counter-increment: source-line; }\npre.numberSource code > span > a:first-child::before\n { content: counter(source-line);\n position: relative; left: -1em; text-align: right; vertical-align: baseline;\n border: none; display: inline-block;\n -webkit-touch-callout: none; -webkit-user-select: none;\n -khtml-user-select: none; -moz-user-select: none;\n -ms-user-select: none; user-select: none;\n padding: 0 4px; width: 4em;\n color: #aaaaaa;\n }\npre.numberSource { margin-left: 3em; border-left: 1px solid #aaaaaa; padding-left: 4px; }\ndiv.sourceCode\n { }\n@media screen {\npre > code.sourceCode > span > a:first-child::before { text-decoration: underline; }\n}\ncode span.al { color: #ff0000; font-weight: bold; } /* Alert */\ncode span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */\ncode span.at { color: #7d9029; } /* Attribute */\ncode span.bn { color: #40a070; } /* BaseN */\ncode span.bu { color: #008000; } /* BuiltIn */\ncode span.cf { color: #007020; font-weight: bold; } /* ControlFlow */\ncode span.ch { color: #4070a0; } /* Char */\ncode span.cn { color: #880000; } /* Constant */\ncode span.co { color: #60a0b0; font-style: italic; } /* Comment */\ncode span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */\ncode span.do { color: #ba2121; font-style: italic; } /* Documentation */\ncode span.dt { color: #902000; } /* DataType */\ncode span.dv { color: #40a070; } /* DecVal */\ncode span.er { color: #ff0000; font-weight: bold; } /* Error */\ncode span.ex { } /* Extension */\ncode span.fl { color: #40a070; } /* Float */\ncode span.fu { color: #06287e; } /* Function */\ncode span.im { color: #008000; font-weight: bold; } /* Import */\ncode span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */\ncode span.kw { color: #007020; font-weight: bold; } /* Keyword */\ncode span.op { color: #666666; } /* Operator */\ncode span.ot { color: #007020; } /* Other */\ncode span.pp { color: #bc7a00; } /* Preprocessor */\ncode span.sc { color: #4070a0; } /* SpecialChar */\ncode span.ss { color: #bb6688; } /* SpecialString */\ncode span.st { color: #4070a0; } /* String */\ncode span.va { color: #19177c; } /* Variable */\ncode span.vs { color: #4070a0; } /* VerbatimString */\ncode span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */",
42
44
  ".highlight table td { padding: 5px; }\n.highlight table pre { margin: 0; }\n.highlight .cm {\n color: #999988;\n font-style: italic;\n}\n.highlight .cp {\n color: #999999;\n font-weight: bold;\n}\n.highlight .c1 {\n color: #999988;\n font-style: italic;\n}\n.highlight .cs {\n color: #999999;\n font-weight: bold;\n font-style: italic;\n}\n.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {\n color: #999988;\n font-style: italic;\n}\n.highlight .err {\n color: #a61717;\n background-color: #e3d2d2;\n}\n.highlight .gd {\n color: #000000;\n background-color: #ffdddd;\n}\n.highlight .ge {\n color: #000000;\n font-style: italic;\n}\n.highlight .gr {\n color: #aa0000;\n}\n.highlight .gh {\n color: #999999;\n}\n.highlight .gi {\n color: #000000;\n background-color: #ddffdd;\n}\n.highlight .go {\n color: #888888;\n}\n.highlight .gp {\n color: #555555;\n}\n.highlight .gs {\n font-weight: bold;\n}\n.highlight .gu {\n color: #aaaaaa;\n}\n.highlight .gt {\n color: #aa0000;\n}\n.highlight .kc {\n color: #000000;\n font-weight: bold;\n}\n.highlight .kd {\n color: #000000;\n font-weight: bold;\n}\n.highlight .kn {\n color: #000000;\n font-weight: bold;\n}\n.highlight .kp {\n color: #000000;\n font-weight: bold;\n}\n.highlight .kr {\n color: #000000;\n font-weight: bold;\n}\n.highlight .kt {\n color: #445588;\n font-weight: bold;\n}\n.highlight .k, .highlight .kv {\n color: #000000;\n font-weight: bold;\n}\n.highlight .mf {\n color: #009999;\n}\n.highlight .mh {\n color: #009999;\n}\n.highlight .il {\n color: #009999;\n}\n.highlight .mi {\n color: #009999;\n}\n.highlight .mo {\n color: #009999;\n}\n.highlight .m, .highlight .mb, .highlight .mx {\n color: #009999;\n}\n.highlight .sa {\n color: #000000;\n font-weight: bold;\n}\n.highlight .sb {\n color: #d14;\n}\n.highlight .sc {\n color: #d14;\n}\n.highlight .sd {\n color: #d14;\n}\n.highlight .s2 {\n color: #d14;\n}\n.highlight .se {\n color: #d14;\n}\n.highlight .sh {\n color: #d14;\n}\n.highlight .si {\n color: #d14;\n}\n.highlight .sx {\n color: #d14;\n}\n.highlight .sr {\n color: #009926;\n}\n.highlight .s1 {\n color: #d14;\n}\n.highlight .ss {\n color: #990073;\n}\n.highlight .s, .highlight .dl {\n color: #d14;\n}\n.highlight .na {\n color: #008080;\n}\n.highlight .bp {\n color: #999999;\n}\n.highlight .nb {\n color: #0086B3;\n}\n.highlight .nc {\n color: #445588;\n font-weight: bold;\n}\n.highlight .no {\n color: #008080;\n}\n.highlight .nd {\n color: #3c5d5d;\n font-weight: bold;\n}\n.highlight .ni {\n color: #800080;\n}\n.highlight .ne {\n color: #990000;\n font-weight: bold;\n}\n.highlight .nf, .highlight .fm {\n color: #990000;\n font-weight: bold;\n}\n.highlight .nl {\n color: #990000;\n font-weight: bold;\n}\n.highlight .nn {\n color: #555555;\n}\n.highlight .nt {\n color: #000080;\n}\n.highlight .vc {\n color: #008080;\n}\n.highlight .vg {\n color: #008080;\n}\n.highlight .vi {\n color: #008080;\n}\n.highlight .nv, .highlight .vm {\n color: #008080;\n}\n.highlight .ow {\n color: #000000;\n font-weight: bold;\n}\n.highlight .o {\n color: #000000;\n font-weight: bold;\n}\n.highlight .w {\n color: #bbbbbb;\n}\n.highlight {\n background-color: #f8f8f8;\n}\n",
43
45
  "// Scrollbar\n::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n}\n::-webkit-scrollbar-thumb {\n background: var(--scrollbar-color);\n -webkit-border-radius: 3px;\n}\n",
44
- ".source-link {\n margin-top: 13px;\n float: right;\n \n @include mobile {\n display: none;\n }\n}\n",
45
46
  "#mobile-search {\n @media print {\n display: none;\n }\n\n @include desktop {\n display: none;\n }\n\n @include mobile {\n position: fixed;\n font-size: 30px;\n top: 0px;\n right: 10px;\n opacity: 0.5;\n }\n}\n\n.search-form {\n margin-bottom: 20px;\n margin-top: 20px;\n}\n\n.search-field {\n border: 1px solid var(--search-field-border-color);\n border-radius: 3px;\n\n outline: none;\n padding: 8px 12px;\n font-size: 1.5em;\n width: 100%;\n min-width: 200px;\n\n &:focus {\n border-color: var(--search-field-focused-border-color);\n }\n}\n",
47
+ ".source-link {\n margin-top: 13px;\n float: right;\n \n @include mobile {\n display: none;\n }\n}\n",
46
48
  "table {\n border-spacing: 0;\n border-collapse: collapse;\n\n display: block;\n width: 100%;\n overflow: auto;\n word-break: normal;\n word-break: keep-all;\n \n th, td {\n padding: 6px 13px;\n border: 1px solid var(--table-border-color);\n }\n\n td {\n background-color: var(--table-bg-color);\n }\n\n th {\n font-weight: bold;\n background-color: var(--table-header-bg-color);\n }\n\n\n tr {\n background-color: var(--table-row-bg-color);\n }\n\n tr:nth-child(2n) {\n background-color: var(--table-alt-row-bg-color);\n }\n}\n",
47
49
  "body {\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n color: var(--font-color);\n // font-family: \"Helvetica Neue\", Helvetica, \"Segoe UI\", Arial, freesans, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-family: \"Segoe UI\", \"Helvetica Neue\", Helvetica,Arial, freesans, sans-serif;\n font-size: 16px;\n line-height: 1.6;\n word-wrap: break-word;\n}\n\nstrong, .strong {\n font-weight: bolder;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 1em;\n margin-bottom: 16px;\n font-weight: bold;\n line-height: 1.4;\n}\n\nh1 {\n color: var(--h1-color);\n border-bottom: 1px solid var(--h1-border-color);\n margin: 0.67em 0;\n padding-bottom: 0.3em;\n font-size: 2.25em;\n line-height: 1.2;\n}\n\nh2 {\n color: var(--h2-color);\n border-bottom: 1px solid var(--h2-border-color);\n padding-bottom: 0.3em;\n font-size: 1.75em;\n line-height: 1.225;\n}\n\nh3 {\n color: var(--h3-color);\n font-size: 1.5em;\n line-height: 1.43;\n}\n\nh4 {\n color: var(--h4-color);\n font-size: 1.25em;\n}\n\nh5 {\n color: var(--h5-color);\n font-size: 1em;\n}\n\nh6 {\n color: var(--h6-color);\n font-size: 1em;\n}\n\ncode, pre, kbd {\n font-family: Consolas, \"Liberation Mono\", Menlo, Courier, monospace;\n}\n",
48
50
  "* {\n box-sizing: border-box;\n}\n\np {\n margin-top: 0;\n margin-bottom: 10px;\n}\n\nblockquote {\n color: var(--blockquote-color);\n border-left: 4px solid var(--blockquote-border-color);\n margin: 0;\n padding: 0 15px;\n\n &>:first-child {\n margin-top: 0;\n }\n\n &>:last-child {\n margin-bottom: 0;\n }\n}\n\np, blockquote, ul, ol, dl, table, pre {\n margin-top: 0;\n margin-bottom: 16px;\n}\n\nmark {\n background-color: var(--highlight-color);\n}\n\n.quiet {\n color: var(--quiet-color);\n}\n\n.float-right {\n float: right;\n}"
49
51
  ],
50
52
  "names": [],
51
- "mappings": "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"
53
+ "mappings": "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"
52
54
  }
@@ -12,10 +12,11 @@
12
12
  @import "line";
13
13
  @import "list";
14
14
  @import "nav";
15
+ @import "pandoc_code";
15
16
  @import "rouge";
16
17
  @import "scrollbar";
17
- @import "source_link";
18
18
  @import "search";
19
+ @import "source_link";
19
20
  @import "table";
20
21
  @import "typography";
21
22
 
@@ -0,0 +1,63 @@
1
+ pre > code.sourceCode { white-space: pre; position: relative; }
2
+ pre > code.sourceCode > span { line-height: 1.25; }
3
+ pre > code.sourceCode > span:empty { height: 1.2em; }
4
+ .sourceCode { overflow: visible; }
5
+ code.sourceCode > span { color: inherit; text-decoration: inherit; }
6
+ div.sourceCode { margin: 1em 0; }
7
+ pre.sourceCode { margin: 0; }
8
+ @media screen {
9
+ div.sourceCode { overflow: auto; }
10
+ }
11
+ @media print {
12
+ pre > code.sourceCode { white-space: pre-wrap; }
13
+ pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
14
+ }
15
+ pre.numberSource code
16
+ { counter-reset: source-line 0; }
17
+ pre.numberSource code > span
18
+ { position: relative; left: -4em; counter-increment: source-line; }
19
+ pre.numberSource code > span > a:first-child::before
20
+ { content: counter(source-line);
21
+ position: relative; left: -1em; text-align: right; vertical-align: baseline;
22
+ border: none; display: inline-block;
23
+ -webkit-touch-callout: none; -webkit-user-select: none;
24
+ -khtml-user-select: none; -moz-user-select: none;
25
+ -ms-user-select: none; user-select: none;
26
+ padding: 0 4px; width: 4em;
27
+ color: #aaaaaa;
28
+ }
29
+ pre.numberSource { margin-left: 3em; border-left: 1px solid #aaaaaa; padding-left: 4px; }
30
+ div.sourceCode
31
+ { }
32
+ @media screen {
33
+ pre > code.sourceCode > span > a:first-child::before { text-decoration: underline; }
34
+ }
35
+ code span.al { color: #ff0000; font-weight: bold; } /* Alert */
36
+ code span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
37
+ code span.at { color: #7d9029; } /* Attribute */
38
+ code span.bn { color: #40a070; } /* BaseN */
39
+ code span.bu { color: #008000; } /* BuiltIn */
40
+ code span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
41
+ code span.ch { color: #4070a0; } /* Char */
42
+ code span.cn { color: #880000; } /* Constant */
43
+ code span.co { color: #60a0b0; font-style: italic; } /* Comment */
44
+ code span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
45
+ code span.do { color: #ba2121; font-style: italic; } /* Documentation */
46
+ code span.dt { color: #902000; } /* DataType */
47
+ code span.dv { color: #40a070; } /* DecVal */
48
+ code span.er { color: #ff0000; font-weight: bold; } /* Error */
49
+ code span.ex { } /* Extension */
50
+ code span.fl { color: #40a070; } /* Float */
51
+ code span.fu { color: #06287e; } /* Function */
52
+ code span.im { color: #008000; font-weight: bold; } /* Import */
53
+ code span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
54
+ code span.kw { color: #007020; font-weight: bold; } /* Keyword */
55
+ code span.op { color: #666666; } /* Operator */
56
+ code span.ot { color: #007020; } /* Other */
57
+ code span.pp { color: #bc7a00; } /* Preprocessor */
58
+ code span.sc { color: #4070a0; } /* SpecialChar */
59
+ code span.ss { color: #bb6688; } /* SpecialString */
60
+ code span.st { color: #4070a0; } /* String */
61
+ code span.va { color: #19177c; } /* Variable */
62
+ code span.vs { color: #4070a0; } /* VerbatimString */
63
+ code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
@@ -1,8 +1,8 @@
1
1
  - unless breadcrumbs.empty?
2
2
  .breadcrumbs
3
3
  - breadcrumbs.each do |item|
4
- - if item.last
5
- span = item.label
6
- - else
4
+ - if item.href
7
5
  a href="#{item.href}" = item.label
8
6
  = " / "
7
+ - else
8
+ span = item.label
@@ -4,6 +4,8 @@ module Madness
4
4
  class Breadcrumbs
5
5
  using StringRefinements
6
6
 
7
+ Breadcrumb = Struct.new :label, :href, keyword_init: true
8
+
7
9
  attr_reader :path
8
10
 
9
11
  def initialize(path)
@@ -17,20 +19,17 @@ module Madness
17
19
  private
18
20
 
19
21
  def breadcrumbs
20
- home = OpenStruct.new({ label: 'Home', href: "#{config.base_uri}/" })
22
+ home = Breadcrumb.new label: 'Home', href: "#{config.base_uri}/"
21
23
  result = breadcrumbs_maker(path).reverse.unshift home
22
- result.last.last = true
24
+ result.last.href = nil
23
25
  result
24
26
  end
25
27
 
26
28
  def breadcrumbs_maker(partial_path)
27
29
  parent, basename = File.split partial_path
28
- item = OpenStruct.new(
29
- {
30
- label: basename.to_label,
31
- href: "#{config.base_uri}/#{partial_path}",
32
- }
33
- )
30
+ href = "#{config.base_uri}/#{partial_path}"
31
+ href = "#{href}/" unless href.end_with? '/'
32
+ item = Breadcrumb.new label: basename.to_label, href: href
34
33
  result = [item]
35
34
  result += breadcrumbs_maker parent unless parent == '.'
36
35
  result
@@ -3,6 +3,7 @@ module Madness
3
3
  class Directory
4
4
  include ServerHelper
5
5
  using ArrayRefinements
6
+ using StringRefinements
6
7
 
7
8
  attr_reader :dir
8
9
 
@@ -17,17 +18,22 @@ module Madness
17
18
  private
18
19
 
19
20
  def files
20
- result = Dir["#{dir}/#{config.dir_glob}"]
21
- result.reject! do |f|
22
- ['README.md', 'index.md'].include? File.basename(f)
21
+ @files ||= begin
22
+ result = Dir["#{dir}/#{config.dir_glob}"]
23
+ result.reject! do |f|
24
+ ['README.md', 'index.md'].include? File.basename(f)
25
+ end
26
+ result.reject! { |f| is_cover_page? f }
27
+ result.nat_sort.map { |path| Item.new path, :file }
23
28
  end
24
- result.nat_sort.map { |path| Item.new path, :file }
25
29
  end
26
30
 
27
31
  def dirs
28
- result = Dir["#{dir}/*"].select { |f| File.directory? f }
29
- result.reject! { |f| exclude? f }
30
- result.nat_sort.map { |path| Item.new path, :dir }
32
+ @dirs ||= begin
33
+ result = Dir["#{dir}/*"].select { |f| File.directory? f }
34
+ result.reject! { |f| exclude? f }
35
+ result.nat_sort.map { |path| Item.new path, :dir }
36
+ end
31
37
  end
32
38
 
33
39
  def exclude?(path)
@@ -40,6 +46,14 @@ module Madness
40
46
  false
41
47
  end
42
48
 
49
+ def is_cover_page?(path)
50
+ dir_paths.include? path.remove(/\.md$/)
51
+ end
52
+
53
+ def dir_paths
54
+ @dir_paths ||= dirs.map(&:path)
55
+ end
56
+
43
57
  def config
44
58
  @config ||= Settings.instance
45
59
  end
@@ -55,10 +55,8 @@ module Madness
55
55
  @dir = base
56
56
  @type = :readme
57
57
 
58
- if File.exist? "#{base}/index.md"
59
- @file = "#{base}/index.md"
60
- elsif File.exist? "#{base}/README.md"
61
- @file = "#{base}/README.md"
58
+ if cover_page
59
+ @file = cover_page
62
60
  else
63
61
  @type = :empty
64
62
  end
@@ -79,5 +77,25 @@ module Madness
79
77
  def md_filename
80
78
  File.extname(base) == '.md' ? base : "#{base}.md"
81
79
  end
80
+
81
+ def cover_page
82
+ @cover_page ||= cover_page!
83
+ end
84
+
85
+ def cover_page!
86
+ cover_page_candidates.each do |candidate|
87
+ return candidate if File.exist? candidate
88
+ end
89
+
90
+ nil
91
+ end
92
+
93
+ def cover_page_candidates
94
+ @cover_page_candidates ||= [
95
+ File.expand_path("../#{File.basename(base)}.md", base),
96
+ File.expand_path('index.md', base),
97
+ File.expand_path('README.md', base),
98
+ ]
99
+ end
82
100
  end
83
101
  end
@@ -0,0 +1,62 @@
1
+ module Madness
2
+ # Generate a markdown Table of Contents for a single document
3
+ class InlineTableOfContents
4
+ include ServerHelper
5
+ using StringRefinements
6
+
7
+ attr_reader :text
8
+
9
+ def initialize(text)
10
+ @text = text
11
+ end
12
+
13
+ def markdown
14
+ @markdown ||= ([caption, ''] + items).join "\n"
15
+ end
16
+
17
+ protected
18
+
19
+ def items
20
+ @items ||= headers.map { |line| toc_item line }
21
+ end
22
+
23
+ def headers
24
+ @headers ||= text.lines(chomp: true).select do |line|
25
+ next if inside_code_block? line
26
+
27
+ line.match(/^(?<level>\#{2,3})\s+(?<text>.+)/)
28
+ end
29
+ end
30
+
31
+ def toc_item(line)
32
+ matches = line.match(/^(?<level>\#{2,3})\s+(?<text>.+)/)
33
+ return nil unless matches
34
+
35
+ text = matches[:text]
36
+ level = matches[:level].size - 2
37
+
38
+ spacer = ' ' * level
39
+ slug = text.to_slug
40
+
41
+ # pandoc removes leading numbers and dots from header slugs, we do the same
42
+ slug = slug.remove(/^[\d\-]+/) if config.renderer == 'pandoc'
43
+ "#{spacer}- [#{text}](##{slug})"
44
+ end
45
+
46
+ def caption
47
+ @caption ||= config.auto_toc.is_a?(String) ? config.auto_toc : '## Table of Contents'
48
+ end
49
+
50
+ def inside_code_block?(line)
51
+ @marker ||= false
52
+
53
+ if !@marker && line.start_with?('```')
54
+ @marker = line[/^`{3,4}/]
55
+ elsif @marker && line.start_with?(@marker)
56
+ @marker = false
57
+ end
58
+
59
+ !!@marker
60
+ end
61
+ end
62
+ end
@@ -24,11 +24,15 @@ module Madness
24
24
  end
25
25
 
26
26
  def to_html
27
- @to_html ||= Redcarpet::Markdown.new(redcarpet_renderer, redcarpet_options).render text
27
+ @to_html ||= renderer.render text
28
28
  end
29
29
 
30
30
  private
31
31
 
32
+ def renderer
33
+ @renderer ||= Rendering::Handler.new config.renderer
34
+ end
35
+
32
36
  def parse_toc(input)
33
37
  input.gsub '<!-- TOC -->', toc
34
38
  end
@@ -50,54 +54,12 @@ module Madness
50
54
  lines[0].match(/^# \w+/) || (lines[1] && lines[0].match(/^\w+/) && lines[1].start_with?('='))
51
55
  end
52
56
 
53
- def redcarpet_options
54
- @redcarpet_options ||= {
55
- no_intra_emphasis: true,
56
- autolink: true,
57
- tables: true,
58
- fenced_code_blocks: true,
59
- strikethrough: true,
60
- space_after_headers: true,
61
- superscript: true,
62
- underline: true,
63
- highlight: true,
64
- quote: false,
65
- footnotes: true,
66
- }
67
- end
68
-
69
- def redcarpet_renderer
70
- redcarpet_handler.new with_toc_data: true
71
- end
72
-
73
- def redcarpet_handler
74
- config.highlighter ? HighlightRenderer : Redcarpet::Render::HTML
75
- end
76
-
77
- def toc_caption
78
- @toc_caption ||= if config.auto_toc.is_a?(String)
79
- config.auto_toc
80
- else
81
- '## Table of Contents'
82
- end
83
- end
84
-
85
57
  def toc
86
- result = ["#{toc_caption}\n"]
87
- markdown.lines(chomp: true).each do |line|
88
- next unless line.start_with? '#'
89
-
90
- matches = line.match(/^(?<level>\#{2,3})\s+(?<text>.+)/)
91
- next unless matches
92
-
93
- level = matches[:level].size - 1
94
- text = matches[:text]
95
-
96
- spacer = ' ' * level
97
- result.push "#{spacer}- [#{text}](##{text.to_slug})"
98
- end
58
+ @toc ||= toc_handler.markdown
59
+ end
99
60
 
100
- result.join "\n"
61
+ def toc_handler
62
+ @toc_handler ||= InlineTableOfContents.new markdown
101
63
  end
102
64
  end
103
65
  end
@@ -2,6 +2,7 @@ module Madness
2
2
  # Handle the navigation links for a given directory
3
3
  class Navigation
4
4
  include ServerHelper
5
+ using ArrayRefinements
5
6
  using StringRefinements
6
7
 
7
8
  attr_reader :dir
@@ -11,7 +12,11 @@ module Madness
11
12
  end
12
13
 
13
14
  def links
14
- @links ||= directory.list
15
+ @links ||= if config.sort_order == 'mixed'
16
+ directory.list.nat_sort(by: :href)
17
+ else
18
+ directory.list
19
+ end
15
20
  end
16
21
 
17
22
  def caption
@@ -27,5 +32,9 @@ module Madness
27
32
  def directory
28
33
  @directory ||= Directory.new(dir)
29
34
  end
35
+
36
+ def config
37
+ Settings.instance
38
+ end
30
39
  end
31
40
  end
@@ -3,8 +3,8 @@ require 'naturally'
3
3
  module Madness
4
4
  module ArrayRefinements
5
5
  refine Array do
6
- def nat_sort
7
- Naturally.sort self
6
+ def nat_sort(by: nil)
7
+ Naturally.sort self, by: by
8
8
  end
9
9
  end
10
10
  end
@@ -12,7 +12,7 @@ module Madness
12
12
  end
13
13
 
14
14
  def to_slug
15
- downcase.strip.gsub(/[^\w]/, '-').squeeze('-').remove(/(^-|-$)/)
15
+ downcase.strip.gsub(/[^[:alnum:]]/, '-').squeeze('-').remove(/(^-|-$)/)
16
16
  end
17
17
 
18
18
  # This is here so we can have one place that defines how to convert
@@ -0,0 +1,23 @@
1
+ require_relative 'pandoc'
2
+ require_relative 'redcarpet'
3
+
4
+ module Madness
5
+ module Rendering
6
+ class Handler
7
+ HANDLERS = {
8
+ redcarpet: Redcarpet,
9
+ pandoc: Pandoc,
10
+ }
11
+
12
+ attr_reader :selector
13
+
14
+ def initialize(selector) = @selector = selector&.to_sym || :redcarpet
15
+ def render(text) = handler.render(text)
16
+
17
+ private
18
+
19
+ def handler = @handler ||= handler_class.new
20
+ def handler_class = @handler_class ||= HANDLERS[selector] || HANDLERS.values.first
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,19 @@
1
+ require 'pandoc-ruby'
2
+
3
+ module Madness
4
+ module Rendering
5
+ class Pandoc
6
+ include ServerHelper
7
+
8
+ def render(text)
9
+ PandocRuby.new(text, [{ from: :markdown, to: :html }], *options).convert
10
+ end
11
+
12
+ private
13
+
14
+ def options
15
+ @options ||= config.highlighter ? [] : :no_highlight
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,44 @@
1
+ require 'redcarpet'
2
+
3
+ module Madness
4
+ module Rendering
5
+ class Redcarpet
6
+ include ServerHelper
7
+
8
+ def render(text)
9
+ handler.render text
10
+ end
11
+
12
+ private
13
+
14
+ def handler
15
+ @handler ||= ::Redcarpet::Markdown.new renderer, options
16
+ end
17
+
18
+ def options
19
+ @redcarpet_options ||= {
20
+ no_intra_emphasis: true,
21
+ autolink: true,
22
+ tables: true,
23
+ fenced_code_blocks: true,
24
+ strikethrough: true,
25
+ space_after_headers: true,
26
+ superscript: true,
27
+ underline: true,
28
+ highlight: true,
29
+ quote: false,
30
+ footnotes: true,
31
+ }
32
+ end
33
+
34
+ def renderer
35
+ handler_class.new with_toc_data: true
36
+ end
37
+
38
+ def handler_class
39
+ config.highlighter ? HighlightRenderer : ::Redcarpet::Render::HTML
40
+ end
41
+
42
+ end
43
+ end
44
+ end
@@ -16,7 +16,7 @@ module Madness
16
16
  set :static, false
17
17
 
18
18
  # Since we cannot use any config values in the main body of the class,
19
- # since they will be updated later, we need to set anything that relys
19
+ # since they will be updated later, we need to set anything that relies
20
20
  # on the config values just before running the server.
21
21
  # The CommandLine class and the test suite should both call
22
22
  # `Server.prepare` before calling Server.run!
@@ -15,7 +15,7 @@ module Madness
15
15
  reset
16
16
  end
17
17
 
18
- def method_missing(name, *args, &_blk)
18
+ def method_missing(name, *args, &_block)
19
19
  name_string = name.to_s
20
20
 
21
21
  if name_string.end_with? '='
@@ -56,7 +56,9 @@ module Madness
56
56
  path: '.',
57
57
  port: 3000,
58
58
  bind: '0.0.0.0',
59
+ renderer: 'redcarpet',
59
60
  base_uri: nil,
61
+ sort_order: 'dirs_first',
60
62
  sidebar: true,
61
63
  auto_h1: true,
62
64
  auto_nav: true,
@@ -1,5 +1,5 @@
1
1
  module Madness
2
- # Generate a markdown Table of Contents
2
+ # Generate a markdown Table of Contents for the entire site
3
3
  class TableOfContents
4
4
  include ServerHelper
5
5
 
@@ -15,6 +15,16 @@ bind: 0.0.0.0
15
15
  # base_uri: /docs
16
16
  base_uri: ~
17
17
 
18
+ # set the underlying markdown renderer:
19
+ # renderer: redcarpet # default renderer
20
+ # renderer: pandoc # pandoc renderer, requires pandoc command
21
+ renderer: redcarpet
22
+
23
+ # choose navigation sort order:
24
+ # sort_order: dirs_first # alphabetic directories then alphabetic files
25
+ # sort_order: mixed # alphabetic regardless of type
26
+ sort_order: dirs_first
27
+
18
28
  # enable sidebar
19
29
  sidebar: true
20
30
 
@@ -1,3 +1,3 @@
1
1
  module Madness
2
- VERSION = '1.1.4'
2
+ VERSION = '1.2.0'
3
3
  end
data/lib/madness.rb CHANGED
@@ -1,11 +1,8 @@
1
- if ENV['BYEBUG']
2
- require 'byebug'
3
- require 'lp'
4
- end
5
-
6
1
  require 'requires'
7
2
 
8
3
  requires 'madness/refinements'
9
4
  requires 'madness/settings'
10
5
  requires 'madness/server_helper'
11
6
  requires 'madness'
7
+
8
+ require 'debug' rescue nil if ENV['DEBUGGER']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: madness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danny Ben Shitrit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-09 00:00:00.000000000 Z
11
+ date: 2024-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -28,22 +28,16 @@ dependencies:
28
28
  name: colsole
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: 0.8.1
34
- - - "<"
31
+ - - "~>"
35
32
  - !ruby/object:Gem::Version
36
- version: '2'
33
+ version: '1.0'
37
34
  type: :runtime
38
35
  prerelease: false
39
36
  version_requirements: !ruby/object:Gem::Requirement
40
37
  requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- version: 0.8.1
44
- - - "<"
38
+ - - "~>"
45
39
  - !ruby/object:Gem::Version
46
- version: '2'
40
+ version: '1.0'
47
41
  - !ruby/object:Gem::Dependency
48
42
  name: extended_yaml
49
43
  requirement: !ruby/object:Gem::Requirement
@@ -148,6 +142,20 @@ dependencies:
148
142
  - - "~>"
149
143
  - !ruby/object:Gem::Version
150
144
  version: '3.5'
145
+ - !ruby/object:Gem::Dependency
146
+ name: pandoc-ruby
147
+ requirement: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: '2.1'
152
+ type: :runtime
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: '2.1'
151
159
  - !ruby/object:Gem::Dependency
152
160
  name: requires
153
161
  requirement: !ruby/object:Gem::Requirement
@@ -248,6 +256,7 @@ files:
248
256
  - app/styles/_manifest.scss
249
257
  - app/styles/_mixins.scss
250
258
  - app/styles/_nav.scss
259
+ - app/styles/_pandoc_code.scss
251
260
  - app/styles/_rouge.scss
252
261
  - app/styles/_scrollbar.scss
253
262
  - app/styles/_search.scss
@@ -275,13 +284,17 @@ files:
275
284
  - lib/madness/directory.rb
276
285
  - lib/madness/document.rb
277
286
  - lib/madness/exceptions.rb
278
- - lib/madness/highlight_renderer.rb
287
+ - lib/madness/inline_table_of_contents.rb
279
288
  - lib/madness/item.rb
280
289
  - lib/madness/markdown_document.rb
281
290
  - lib/madness/navigation.rb
282
291
  - lib/madness/refinements/array_refinements.rb
283
292
  - lib/madness/refinements/hash_refinements.rb
284
293
  - lib/madness/refinements/string_refinements.rb
294
+ - lib/madness/rendering/handler.rb
295
+ - lib/madness/rendering/pandoc.rb
296
+ - lib/madness/rendering/redcarpet.rb
297
+ - lib/madness/rendering/redcarpet_highlighter.rb
285
298
  - lib/madness/search.rb
286
299
  - lib/madness/server.rb
287
300
  - lib/madness/server_base.rb
@@ -315,7 +328,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
315
328
  - !ruby/object:Gem::Version
316
329
  version: '0'
317
330
  requirements: []
318
- rubygems_version: 3.5.6
331
+ rubygems_version: 3.5.7
319
332
  signing_key:
320
333
  specification_version: 4
321
334
  summary: Instant Markdown Server