]> git.plutz.net Git - cgilite/blob - markdown.awk
nesting of <section> in block elements
[cgilite] / markdown.awk
1 #!/bin/awk -f
2 #!/opt/busybox/awk -f
3
4 # EXPERIMENTAL Markdown processor with minimal dependencies.
5 # Meant to support all features of John Grubers basic Markdown
6 # + a number of common extensions, mostly inspired by Pandoc Markdown
7
8 # Supported Features / TODO:
9 # ==========================
10 # [x] done    [ ] todo    [-] not planned    ? unsure
11 #
12 # Basic Markdown - Block elements:
13 # -------------------------------
14 # - [x] Paragraphs
15 #   - [x] Double space line breaks
16 # - [x] Proper block element nesting
17 # - [x] Headings
18 # - [x] ATX-Style Headings
19 # - [x] Blockquotes
20 # - [x] Lists (ordered, unordered)
21 # - [x] Code blocks (using indention)
22 # - [x] Horizontal rules
23 # - [x] Verbatim HTML block (disabled by default)
24 #
25 # Basic Markdown - Inline elements:
26 # ---------------------------------
27 # - [x] Links
28 # - [x] Reference style links
29 # - [x] Emphasis *em*/**strong** (*Asterisk*, _Underscore_)
30 # - [x] `code`, also ``code containing `backticks` ``
31 # - [x] Images / reference style images
32 # - [x] <automatic links>
33 # - [x] backslash escapes
34 # - [x] Verbatim HTML inline (disabled by default)
35 # - [x] HTML escaping
36 #
37 # NOTE: Set the environment variable MD_HTML=true to enable verbatim HTML
38 #
39 # Extensions - Block elements:
40 # ----------------------------
41 # - [x] Automatic <section>-wrapping (custom)
42 # -  ?  Heading identifiers (php md, pandoc)
43 # - [x] Automatic heading identifiers (custom)
44 # - [x] Fenced code blocks (php md, pandoc)
45 #   - [x] Fenced code attributes
46 # - [x] Images (as block elements, <figure>-wrapped) (custom)
47 #   - [x] reference style block images
48 # - [/] Tables
49 #   -  ?  Simple table (pandoc)
50 #   -  ?  Multiline table (pandoc)
51 #   - [x] Grid table (pandoc)
52 #     - [x] Headerless
53 #   - [x] Pipe table (php md, pandoc)
54 # - [x] Line blocks (pandoc)
55 # - [x] Task lists (pandoc, custom)
56 # - [ ] Definition lists (php md, pandoc)
57 # - [-] Numbered example lists (pandoc)
58 # - [-] Metadata blocks (pandoc)
59 # - [x] Metadata blocks (custom)
60 # - [x] Fenced Divs (pandoc)
61 #
62 # Extensions - Inline elements:
63 # ----------------------------
64 # - [x] Ignore embedded_underscores (php md, pandoc)
65 # - [x] ~~strikeout~~ (pandoc)
66 # - [x] ^Superscript^ ~Subscript~ (pandoc)
67 # - [-] Bracketed spans (pandoc)
68 #   - [-] Inline attributes (pandoc)
69 # - [x] Image attributes (custom, pandoc inspired, not for reference style)
70 # - [x] Wiki style links [[PageName]] / [[PageName|Link Text]]
71 # - [-] TEX-Math (pandoc)
72 # -  ?  Footnotes (php md)
73 # -  ?  Abbreviations (php md)
74 # -  ?  "Curly quotes" (smartypants)
75 # - [ ] em-dashes (--) (smartypants old)
76 # -  ?  ... three-dot ellipsis (smartypants)
77 # - [-] en-dash (smartypants)
78 # - [ ] Automatic em-dash / en-dash
79 # - [x] Automatic -> Arrows <- (custom)
80
81 function debug(text) { printf "\n---\n%s\n---\n", text > "/dev/stderr"; }
82
83 function HTML ( text ) {
84   gsub( /&/,  "\\&amp;",  text );
85   gsub( /</,  "\\&lt;",   text );
86   gsub( />/,  "\\&gt;",   text );
87   gsub( /"/,  "\\&quot;", text );
88   gsub( /'/,  "\\&#x27;", text );
89   gsub( /\\/, "\\&#x5C;", text );
90   return text;
91 }
92
93 function URL ( text, sharp ) {
94   gsub( /&/,  "%26",  text );
95   gsub( /"/,  "%22", text );
96   gsub( /'/,  "%27", text );
97   gsub( /`/,  "%60", text );
98   gsub( /\?/,  "%3F", text );
99   if (sharp) gsub( /#/,  "%23", text );
100   gsub( /\[/,  "%5B", text );
101   gsub( /\]/,  "%5D", text );
102   gsub( / /,  "%20", text );
103   gsub( /       /,  "%09", text );
104   gsub( /\\/, "%5C", text );
105   return text;
106 }
107
108 function inline( line, LOCAL, len, code, href, guard ) {
109   nu = "(\\\\\\\\|\\\\[^\\\\]|[^\\\\_]|_[[:alnum:]])*"    # not underline (except when escaped)
110   na = "(\\\\\\\\|\\\\[^\\\\]|[^\\\\\\*])*"  # not asterisk (except when escaped)
111   ieu =  "_([^_[:space:]]|[^_[:space:]]" nu "[^_[:space:]])_"                 # inner <em> (underline)
112   isu = "__([^_[:space:]]|[^_[:space:]]" nu "[^_[:space:]])__"                # inner <strong> (underline)
113   iea =    "\\*([^\\*[:space:]]|[^\\*[:space:]]" na "[^\\*[:space:]])\\*"     # inner <em> (asterisk)
114   isa = "\\*\\*([^\\*[:space:]]|[^\\*[:space:]]" na "[^\\*[:space:]])\\*\\*"  # inner <strong> (asterisk)
115
116   if ( line ~ /^$/ ) {  # Recursion End
117     return "";
118
119   # omit processing of escaped characters
120   } else if ( line ~ /^\\./) {
121     return HTML(substr(line, 2, 1)) inline( substr(line, 3) );
122
123   # hard brakes
124   } else if ( match(line, /^  \n/) ) {
125     return "<br>\n" inline( substr(line, RLENGTH + 1) );
126
127   #  ``code spans``
128   } else if ( match( line, /^`+/) ) {
129     len = RLENGTH
130     guard = substr( line, 1, len )
131     if ( match(line, guard ".*" guard) ) {
132       code = substr( line, len + 1, match( substr(line, len + 1), guard ) - 1)
133       len = 2 * length(guard) + length(code)
134       #  strip single surrounding white spaces
135       code = gensub( /^ | $/, "", "g" , code)
136       #  escape HTML within code span
137       gsub( /&/, "\\&amp;", code ); gsub( /</, "\\&lt;", code ); gsub( />/, "\\&gt;", code );
138       return "<code>" code "</code>" inline( substr( line, len + 1 ) )
139     }
140
141   # Wiki style links
142   } else if ( match( line, /^\[\[([^]|]+)(\|[^]]+)?\]\]/) ) {
143     len = RLENGTH;
144     href = gensub(/^\[\[([^]|]+)(\|([^]]+))?\]\]/, "\\1", 1, substr(line, 1, len) );
145     text = gensub(/^\[\[([^]|]+)(\|([^]]+))?\]\]/, "\\3", 1, substr(line, 1, len) );
146     if ( ! text ) text = href;
147     return "<a href=\"" URL(href) "\">" HTML(text) "</a>" inline( substr( line, len + 1) );
148
149   #  quick links ("automatic links" in md doc)
150   } else if ( match( line, /^<[a-zA-Z]+:\/\/([-\.[:alnum:]]+)(:[0-9]*)?(\/[^>]*)?>/ ) ) {
151     len = RLENGTH;
152     href = URL( substr( line, 2, len - 2) );
153     return "<a href=\"" href "\">" href "</a>" inline( substr( line, len + 1) );
154
155   # quick link email
156   } else if ( match( line, /^<[a-zA-Z0-9.!#$%&'\''*+\/=?^_`{|}~-]+@[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(\.[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*>/ ) ) {
157     len = RLENGTH;
158     href = URL( substr( line, 2, len - 2) );
159     return "<a href=\"mailto:" href "\">" href "</a>" inline( substr( line, len + 1) );
160
161   # inline links
162   #                                 ,_______________________Image____________________________,
163   } else if ( match(line, /^\[([^]]+|!\[[^]]*\]\([^"\)]+([ \t]+"[^"]+")?\)(\{[a-zA-Z \t-]*\})?)\]\(([^"\)]+)([[:space:]]+"([^"]+)")?\)/) ) {
164     len = RLENGTH;
165     text  = gensub(/^\[([^]]+|!\[[^]]*\]\([^"\)]+([ \t]+"[^"]+")?\)(\{[a-zA-Z \t-]*\})?)\]\(([^"\)]+)([[:space:]]+"([^"]+)")?\)/, \
166                    "\\1", 1, substr(line, 1, len) );
167     href  = gensub(/^\[([^]]+|!\[[^]]*\]\([^"\)]+([ \t]+"[^"]+")?\)(\{[a-zA-Z \t-]*\})?)\]\(([^"\)]+)([[:space:]]+"([^"]+)")?\)/, \
168                    "\\4", 1, substr(line, 1, len) );
169     title = gensub(/^\[([^]]+|!\[[^]]*\]\([^"\)]+([ \t]+"[^"]+")?\)(\{[a-zA-Z \t-]*\})?)\]\(([^"\)]+)([[:space:]]+"([^"]+)")?\)/, \
170                    "\\6", 1, substr(line, 1, len) );
171     if ( title ) {
172       return "<a href=\"" URL(href) "\" title=\"" HTML(title) "\">" inline( text ) "</a>" inline( substr( line, len + 1) );
173     } else {
174       return "<a href=\"" URL(href) "\">" inline( text ) "</a>" inline( substr( line, len + 1) );
175     }
176
177   # reference style links
178   } else if ( match(line, /^\[([^]]+)\] ?\[([^]]*)\]/ ) ) {
179     len = RLENGTH;
180     text = gensub(/^\[([^\n]+)\] ?\[([^\n]*)\].*/, "\\1", 1, substr(line, 1, len) );
181       id = gensub(/^\[([^\n]+)\] ?\[([^\n]*)\].*/, "\\2", 1, substr(line, 1, len) );
182     if ( ! id ) id = text;
183     if ( rl_href[id] && rl_title[id] ) {
184       return "<a href=\"" URL(rl_href[id]) "\" title=\"" HTML(rl_title[id]) "\">" inline(text) "</a>" inline( substr( line, len + 1) );
185     } else if ( rl_href[id] ) {
186       return "<a href=\"" URL(rl_href[id]) "\">" inline(text) "</a>" inline( substr( line, len + 1) );
187     } else {
188       return "" HTML(substr(line, 1, len)) inline( substr(line, len + 1) );
189     }
190
191   # inline images
192   } else if ( match(line, /^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?/) ) {
193     len = RLENGTH;
194     text   = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?/, "\\1", "g", substr(line, 1, len) );
195     href   = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?/, "\\2", "g", substr(line, 1, len) );
196     title  = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?/, "\\4", "g", substr(line, 1, len) );
197     attrib = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?/, "\\6", "g", substr(line, 1, len) );
198     if ( title && attrib ) {
199       return "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\" title=\"" HTML(title) "\" class=\"" HTML(attrib) "\">" \
200              inline( substr( line, len + 1) );
201     } else if ( title ) {
202       return "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\" title=\"" HTML(title) "\">" \
203              inline( substr( line, len + 1) );
204     } else if ( attrib ) {
205       return "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\" class=\"" HTML(attrib) "\">" \
206              inline( substr( line, len + 1) );
207     } else {
208       return "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\">" \
209              inline( substr( line, len + 1) );
210     }
211
212   # reference style images
213   } else if ( match(line, /^!\[([^]]*)\] ?\[([^]]*)\]/ ) ) {
214     len = RLENGTH;
215     text = gensub(/^!\[([^\n]*)\] ?\[([^\n]*)\].*/, "\\1", 1, substr(line, 1, len) );
216       id = gensub(/^!\[([^\n]*)\] ?\[([^\n]*)\].*/, "\\2", 1, substr(line, 1, len) );
217     if ( ! id ) id = text;
218     if ( rl_href[id] && rl_title[id] ) {
219       return "<img src=\"" URL(rl_href[id], 1) "\" alt=\"" HTML(text) "\" title=\"" HTML(rl_title[id]) "\">" \
220              inline( substr( line, len + 1) );
221     } else if ( rl_href[id] ) {
222       return "<img src=\"" URL(rl_href[id], 1) "\" alt=\"" HTML(text) "\">" \
223              inline( substr( line, len + 1) );
224     } else {
225       return "" HTML(substr(line, 1, len)) inline( substr(line, len + 1) );
226     }
227
228   #  ~~strikeout~~ (pandoc)
229   } else if ( match(line, /^~~([[:graph:]]|[[:graph:]]([^~]|~[^~])*[[:graph:]])~~/) ) {
230     len = RLENGTH;
231     return "<del>" inline( substr( line, 3, len - 4 ) ) "</del>" inline( substr( line, len + 1 ) );
232
233   #  ^superscript^ (pandoc)
234   } else if ( match(line, /^\^([^[:space:]^]|\\[ ^])+\^/) ) {
235     len = RLENGTH;
236     return "<sup>" inline( substr( line, 2, len - 2 ) ) "</sup>" inline( substr( line, len + 1 ) );
237
238   #  ~subscript~ (pandoc)
239   } else if ( match(line, /^~([^[:space:]~]|\\[ ~])+~/) ) {
240     len = RLENGTH;
241     return "<sub>" inline( substr( line, 2, len - 2 ) ) "</sub>" inline( substr( line, len + 1 ) );
242
243   # ignore embedded underscores (pandoc, php md)
244   } else if ( match(line, "^[[:alnum:]](__|_)") ) {
245     return HTML(substr( line, 1, RLENGTH)) inline( substr(line, RLENGTH + 1) );
246
247   #  __strong__$
248   } else if ( match(line, "^__(([^_[:space:]]|" ieu ")|([^_[:space:]]|" ieu ")(" nu "|" ieu ")*([^_[:space:]]|" ieu "))__$") ) {
249     len = RLENGTH;
250     return "<strong>" inline( substr( line, 3, len - 4 ) ) "</strong>" inline( substr( line, len + 1 ) );
251
252   #  __strong__
253   } else if ( match(line, "^__(([^_[:space:]]|" ieu ")|([^_[:space:]]|" ieu ")(" nu "|" ieu ")*([^_[:space:]]|" ieu "))__[[:space:][:punct:]]") ) {
254     len = RLENGTH;
255     return "<strong>" inline( substr( line, 3, len - 5 ) ) "</strong>" inline( substr( line, len) );
256
257   #  **strong**
258   } else if ( match(line, "^\\*\\*(([^\\*[:space:]]|" iea ")|([^\\*[:space:]]|" iea ")(" na "|" iea ")*([^\\*[:space:]]|" iea "))\\*\\*") ) {
259     len = RLENGTH;
260     return "<strong>" inline( substr( line, 3, len - 4 ) ) "</strong>" inline( substr( line, len + 1 ) );
261
262   #  _em_$
263   } else if ( match(line, "^_(([^_[:space:]]|" isu ")|([^_[:space:]]|" isu ")(" nu "|" isu ")*([^_[:space:]]|" isu "))_$") ) {
264     len = RLENGTH;
265     return "<em>" inline( substr( line, 2, len - 2 ) ) "</em>" inline( substr( line, len + 1 ) );
266
267   #  _em_
268   } else if ( match(line, "^_(([^_[:space:]]|" isu ")|([^_[:space:]]|" isu ")(" nu "|" isu ")*([^_[:space:]]|" isu "))_[[:space:][:punct:]]") ) {
269     len = RLENGTH;
270     return "<em>" inline( substr( line, 2, len - 3 ) ) "</em>" inline( substr( line, len ) );
271
272   #  *em*
273   } else if ( match(line, "^\\*(([^\\*[:space:]]|" isa ")|([^\\*[:space:]]|" isa ")(" na "|" isa ")*([^\\*[:space:]]|" isa "))\\*") ) {
274     len = RLENGTH;
275     return "<em>" inline( substr( line, 2, len - 2 ) ) "</em>" inline( substr( line, len + 1 ) );
276
277   # Macros
278   } else if ( AllowMacros && match( line, /^<<([^>]|>[^>])+>>/) ) {
279     len = RLENGTH;
280     return macro( substr( line, 3, len - 4 ) ) inline(substr(line, len + 1));
281
282   # Verbatim inline HTML
283   } else if ( AllowHTML && match( line, /^(<!--([^-]|-[^-]|--[^>])*-->|<\?([^\?]|\?[^>])*\?>|<![A-Z][^>]*>|<!\[CDATA\[([^\]]|\][^\]]|\]\][^>])*\]\]>|<\/[A-Za-z][A-Za-z0-9-]*[[:space:]]*>|<[A-Za-z][A-Za-z0-9-]*([[:space:]]+[A-Za-z_:][A-Za-z0-9_\.:-]*([[:space:]]*=[[:space:]]*([[:space:]"'=<>`]+|"[^"]*"|'[^']*'))?)*[[:space:]]*\/?>)/) ) {
284     len = RLENGTH;
285     return substr( line, 1, len) inline(substr(line, len + 1));
286
287   # Literal HTML entities
288   } else if ( match( line, /^&([a-zA-Z]{2,32}|#[0-9]{1,7}|#[xX][0-9a-fA-F]{1,6});/) ) {
289     len = RLENGTH;
290     return substr( line, 1, len ) inline(substr(line, len + 1));
291
292   # Arrows
293   } else if ( line ~ /^-->( |$)/) {  # ignore multidash-arrow
294     return "--&gt;" inline( substr(line, 4) );
295   } else if ( line ~ /^<-( |$)/) {
296     return "&larr;" inline( substr(line, 3) );
297   } else if ( line ~ /^->( |$)/) {
298     return "&rarr;" inline( substr(line, 3) );
299
300   # Escape lone HTML character
301   } else if ( match( line, /^[&<>"']/) ) {
302     return HTML(substr(line, 1, 1)) inline(substr(line, 2));
303
304   #  continue walk over string
305   } else {
306     return substr(line, 1, 1) inline( substr(line, 2) );
307   }
308 }
309
310 function headline( hlvl, htxt, LOCAL, sec, n, HL) {
311   split( gensub( /^(.* )?([0-9]+( [0-9]+){5})$/, "\\2" ,"1", hstack),  HL);
312
313   for ( n = hlvl; n <= 6; n++ ) { sec = sec (HL[n]?"</section>":""); }
314   HL[hlvl]++; for ( n = hlvl + 1; n <= 6; n++) { HL[n] = 0;}
315   hid = HL[1]; for ( n = 2; n <= hlvl; n++) { hid = hid "." HL[n] ; }
316   # hid = hid ":" URL(htxt, 1);
317
318   hstack = gensub( /^(.* )?([0-9]+( [0-9]+){5})$/, "\\1" ,"1", hstack) \
319            HL[1] " " HL[2] " " HL[3] " " HL[4] " " HL[5] " " HL[6];
320
321   return sec "<section class=\"h" hlvl "\" id=\"" hid "\">" \
322          "<h" hlvl ">" inline( htxt ) \
323          "<a class=\"anchor\" href=\"#" hid "\"></a>" \
324          "</h" hlvl ">\n\n";
325 }
326
327 # Nested Block, resets heading counters
328 function _nblock( block, LOCAL, hlsav, sec ) {
329   hlsav = hstack;
330   hstack = hstack " 0 0 0 0 0 0";
331
332   # Block Level
333   blvl++;
334
335   block = _block( block );
336   split( gensub( /^(.* )?([0-9]+( [0-9]+){5})$/, "\\2" ,"1", hstack),  HL);
337   sec = ""; for ( n = 1; n <= 6; n++ ) { sec = sec (HL[n]?"</section>":""); }
338   hstack = hlsav; blvl--;
339   return block sec;
340 }
341
342 function _block( block, LOCAL, st, len, hlvl, htxt, sec, guard, code, indent, attrib ) {
343   gsub( /^\n+|\n+$/, "", block );
344
345   if ( block == "" ) {
346     return "";
347
348   # HTML #2 #3 #4 $5
349   } else if ( AllowHTML && match( block, /(^|\n) ? ? ?(<!--([^-]|-[^-]|--[^>])*(-->|$)|<\?([^\?]|\?[^>])*(\?>|$)|<![A-Z][^>]*(>|$)|<!\[CDATA\[([^\]]|\][^\]]|\]\][^>])*(\]\]>|$))/) ) {
350     len = RLENGTH; st = RSTART;
351     return _block(substr(block, 1, st - 1)) substr(block, st, len) _block(substr(block, st + len));
352
353   # HTML #6
354   } else if ( AllowHTML && match( tolower(block), /(^|\n) ? ? ?<\/?(address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[123456]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul)([[:space:]\n>]|\/>)([^\n]|\n[ \t]*[^\n])*(\n[[:space:]]*\n|$)/) ) {
355     len = RLENGTH; st = RSTART;
356     return _block(substr(block, 1, st - 1)) substr(block, st, len) _block(substr(block, st + len));
357
358   # HTML #1
359   } else if ( AllowHTML && match( tolower(block), /(^|\n) ? ? ?<(script|pre|style)([[:space:]\n>]).*(<\/script>|<\/pre>|<\/style>|$)/) ) {
360     len = RLENGTH; st = RSTART;
361     match( tolower(substr(block, st, len)), /(<\/script>|<\/pre>|<\/style>)/);
362     len = RSTART + RLENGTH;
363     return _block(substr(block, 1, st - 1)) substr(block, st, len) _block(substr(block, st + len));
364
365   # HTML #7
366   } else if ( AllowHTML && match( block, /^ ? ? ?(<\/[A-Za-z][A-Za-z0-9-]*[[:space:]]*>|<[A-Za-z][A-Za-z0-9-]*([[:space:]]+[A-Za-z_:][A-Za-z0-9_\.:-]*([[:space:]]*=[[:space:]]*([[:space:]"'=<>`]+|"[^"]*"|'[^']*'))?)*[[:space:]]*\/?>)([[:space:]]*\n)([^\n]|\n[ \t]*[^\n])*(\n[[:space:]]*\n|$)/) ) {
367     len = RLENGTH; st = RSTART;
368     return substr(block, st, len) _block(substr(block, st + len));
369
370   # Metadata (custom, block starting with %something)
371   # Metadata is ignored but can be interpreted externally
372   } else if ( match(block, /^%[a-zA-Z]+([[:space:]][^\n]*)?(\n|$)(%[a-zA-Z]+([[:space:]][^\n]*)?(\n|$)|%([[:space:]][^\n]*)?(\n|$)|[ \t]+[^\n[:space:]][^\n]*(\n|$))*/) ) {
373     len = RLENGTH; st = RSTART;
374     return  _block( substr( block, len + 1) );
375  
376   # Blockquote (leading >)
377   } else if ( match( block, /^> /) ) {
378     match( block, /(^|\n)[[:space:]]*(\n|$)/ ) || match(block, /$/);
379     len = RLENGTH; st = RSTART;
380     return "<blockquote>\n" _nblock( gensub( /(^|\n)> /, "\n", "g", substr(block, 1, st - 1) ) ) "</blockquote>\n\n" \
381            _block( substr(block, st + len) );
382
383   # Pipe Tables (pandoc / php md / gfm )
384   } else if ( match(block, "^((\\|)?([^\n]+\\|)+[^\n]+(\\|)?)\n" \
385                            "((\\|)?:?(-+:?[\\|+])+:?-+:?(\\|)?)\n" \
386                            "((\\|)?([^\n]+\\|)+[^\n]+(\\|)?(\n|$))+" ) ) {
387     len = RLENGTH; st = RSTART;
388     #initialize empty arrays
389     split("", talign); split("", tarray);
390     cols = 0; cnt=0; ttext = "";
391
392     # table header and alignment
393     split( gensub( /(^\||\|$)/, "", "g", \
394            gensub( /(^|[^\\])\\\|/, "\\1\\&#x7C;", "g", \
395            substr(block, 1, match(block, /(\n|$)/)) \
396     )), tarray, /\|/);
397     block = substr(block, match(block, /(\n|$)/) + 1 );
398     cols = split( \
399            gensub( /(^\||\|$)/, "", "g", \
400            substr(block, 1, match(block, /(\n|$)/)) \
401     ), talign, /[+\|]/);
402     block = substr(block, match(block, /(\n|$)/) + 1 );
403
404     for( cnt = 1; cnt < cols; cnt++ ) {
405            if (match(talign[cnt], /:-+:/)) talign[cnt]="center";
406       else if (match(talign[cnt],  /-+:/)) talign[cnt]="right";
407       else if (match(talign[cnt],  /:-+/)) talign[cnt]="left";
408       else talign[cnt]="";
409     }
410
411     ttext = "<thead>\n<tr>"
412     for (cnt = 1; cnt < cols; cnt++)
413       ttext = ttext "<th align=\"" talign[cnt] "\">" inline(tarray[cnt]) "</th>"
414     ttext = ttext "</tr>\n</thead><tbody>\n"
415
416     while ( match(block, "^((\\|)?([^\n]+\\|)+[^\n]+(\\|)?(\n|$))+" ) ){
417       split( gensub( /(^\||\|$)/, "", "g", \
418              gensub( /(^|[^\\])\\\|/, "\\1\\&#x7C;", "g", \
419              substr(block, 1, match(block, /(\n|$)/)) \
420       )), tarray, /\|/);
421       block = substr(block, match(block, /(\n|$)/) + 1 );
422
423       ttext = ttext "<tr>"
424       for (cnt = 1; cnt < cols; cnt++)
425         ttext = ttext "<td align=\"" talign[cnt] "\">" inline(tarray[cnt]) "</td>"
426       ttext = ttext "</tr>\n"
427     }
428     return "<table>" ttext "</tbody></table>\n" _block(block);
429
430   # Grid Tables (pandoc)
431   # (with, and without header)
432   } else if ( match( block, "^\\+(-+\\+)+\n" \
433                             "(\\|([^\n]+\\|)+\n)+" \
434                             "(\\+(:?=+:?\\+)+)\n" \
435                            "((\\|([^\n]+\\|)+\n)+" \
436                              "\\+(-+\\+)+(\n|$))+" \
437                    ) || \
438               match( block, "^()()()" \
439                             "(\\+(:?-+:?\\+)+)\n" \
440                            "((\\|([^\n]+\\|)+\n)+" \
441                              "\\+(-+\\+)+(\n|$))+" \
442   ) ) {
443     len = RLENGTH; st = RSTART;
444     #initialize empty arrays
445     split("", talign); split("", tarray); split("", tread);
446     cols = 0; cnt=0; ttext = "";
447
448     # Column Count
449     cols = split(   gensub( "^(\\+(:?-+:?\\+)+)(\n.*)*$", "\\1", 1, block), tread, /\+/) - 2;
450     # debug(" Cols: " gensub( "^(\\+(:?-+:?\\+)+)(\n.*)*$", "\\1", 1, block ));
451
452     # table alignment
453     split( gensub( "^(.*\n)?\\+((:?=+:?\\+|(:-+|-+:|:-+:)\\+)+)(\n.*)$", "\\2", "g", block ), talign, /\+/ );
454     # debug("Align: " gensub( "^(.*\n)?\\+((:?=+:?\\+|(:-+|-+:|:-+:)\\+)+)(\n.*)$", "\\2", "g", block ));
455
456     for (cnt = 1; cnt <= cols; cnt++) {
457            if (match(talign[cnt], /:(-+|=+):/)) talign[cnt]="center";
458       else if (match(talign[cnt],  /(-+|=+):/)) talign[cnt]="right";
459       else if (match(talign[cnt], /:(-+|=+)/ )) talign[cnt]="left";
460       else talign[cnt]="";
461     }
462
463     if ( match(block, "^\\+(-+\\+)+\n" \
464                       "(\\|([^\n]+\\|)+\n)+" \
465                        "\\+(:?=+:?\\+)+\n" \
466                      "((\\|([^\n]+\\|)+\n)+" \
467                        "\\+(-+\\+)+(\n|$))+" \
468     ) ) {
469       # table header
470       block = substr(block, match(block, /(\n|$)/) + 1 );
471       while ( match(block, "^\\|([^\n]+\\|)+\n") ) {
472         split( gensub( /(^\||\|$)/, "", "g", \
473                  gensub( /(^|[^\\])\\\|/, "\\1\\&#x7C;", "g", \
474                    substr(block, 1, match(block, /(\n|$)/)) \
475         )), tread, /\|/);
476         block = substr(block, match(block, /(\n|$)/) + 1 );
477         for (cnt = 1; cnt <= cols; cnt++)
478           tarray[cnt] = tarray[cnt] "\n" tread[cnt];
479       }
480
481       ttext = "<thead>\n<tr>"
482       for (cnt = 1; cnt <= cols; cnt++)
483         ttext = ttext "<th align=\"" talign[cnt] "\">" _nblock(tarray[cnt]) "</th>"
484       ttext = ttext "</tr>\n</thead>"
485     }
486
487     # table body
488     block = substr(block, match(block, /(\n|$)/) + 1 );
489     ttext = ttext "<tbody>\n"
490
491     while ( match(block, /^((\|([^\n]+\|)+\n)+\+(-+\+)+(\n|$))+/ ) ){
492       split("", tarray);
493       while ( match(block, /^\|([^\n]+\|)+\n/) ) {
494         split( gensub( /(^\||\|$)/, "", "g", \
495                gensub( /(^|[^\\])\\\|/, "\\1\\&#x7C;", "g", \
496                substr(block, 1, match(block, /(\n|$)/)) \
497         )), tread, /\|/);
498         block = substr(block, match(block, /(\n|$)/) + 1 );
499         for (cnt = 1; cnt <= cols; cnt++)
500           tarray[cnt] = tarray[cnt] "\n" tread[cnt];
501       }
502       block = substr(block, match(block, /(\n|$)/) + 1 );
503
504       ttext = ttext "<tr>"
505       for (cnt = 1; cnt <= cols; cnt++)
506         ttext = ttext "<td align=\"" talign[cnt] "\">" _nblock(tarray[cnt]) "</td>"
507       ttext = ttext "</tr>\n"
508     }
509     return "<table>" ttext "</tbody></table>\n" _nblock(block);
510
511   # Line Blocks (pandoc)
512   } else if ( match(block, /^\| [^\n]*(\n|$)(\| [^\n]*(\n|$)|[ \t]+[^\n[:space:]][^\n]*(\n|$))*/) ) {
513     len = RLENGTH; st = RSTART;
514     code = substr(block, 1, len);
515     gsub(/\n[[:space:]]+/, " ", code);
516     gsub(/\n\| /, "\n", code);
517     gsub(/^\| |\n$/, "", code);
518     return "<div class=\"line-block\">" gensub(/\n/, "<br>\n", "g", inline( code )) "</div>\n" \
519            _block( substr( block, len + 1) );
520
521   # Indented Code Block
522   } else if ( match(block, /^(    |\t)( *\t*[^ \t\n]+ *\t*)+(\n|$)((    |\t)[^\n]+(\n|$)|[ \t]*(\n|$))*/) ) {
523     len = RLENGTH; st = RSTART;
524     code = substr(block, 1, len);
525     gsub(/(^|\n)(    |\t)/, "\n", code);
526     gsub(/^\n|\n+$/, "", code);
527     return "<pre><code>" HTML( code ) "</code></pre>\n" \
528            _block( substr( block, len + 1 ) );
529
530   # Fenced Divs (pandoc, custom)
531   } else if ( match( block, /^(:::+)/ ) ) {
532     guard = substr( block, 1, RLENGTH );
533     code = gensub(/^[^\n]+\n/, "", 1, block);
534     attrib = gensub(/^:::+[ \t]*\{?[ \t]*([^\}\n]*)\}?[ \t]*\n.*$/, "\\1", 1, block);
535     gsub(/[^a-zA-Z0-9_-]+/, " ", attrib);
536     gsub(/(^ | $)/, "", attrib);
537     if ( match(code, "(^|\n)" guard "+(\n|$)" ) ) {
538       len = RLENGTH; st = RSTART;
539       return "<div class=\"" attrib "\">" _nblock( substr(code, 1, st - 1) ) "</div>\n" \
540              _block( substr( code, st + len ) );
541     } else {
542       match( block, /(^|\n)[[:space:]]*(\n|$)/ ) || match( block, /$/ );
543       len = RLENGTH; st = RSTART;
544       return "<p>" inline( substr(block, 1, st - 1) ) "</p>\n" \
545              _block( substr(block, st + len) );
546     }
547
548   # Fenced Code Block (pandoc)
549   } else if ( match( block, /^(~~~+|```+)/ ) ) {
550     guard = substr( block, 1, RLENGTH );
551     code = gensub(/^[^\n]+\n/, "", 1, block);
552     attrib = gensub(/^(~~~+|```+)[ \t]*\{?[ \t]*([^\}\n]*)\}?[ \t]*\n.*$/, "\\2", 1, block);
553     gsub(/[^a-zA-Z0-9_-]+/, " ", attrib);
554     gsub(/(^ | $)/, "", attrib);
555     if ( match(code, "(^|\n)" guard "+(\n|$)" ) ) {
556       len = RLENGTH; st = RSTART;
557       return "<pre><code class=\"" attrib "\">" HTML( substr(code, 1, st - 1) ) "</code></pre>\n" \
558              _block( substr( code, st + len ) );
559     } else {
560       match( block, /(^|\n)[[:space:]]*(\n|$)/ ) || match( block, /$/ );
561       len = RLENGTH; st = RSTART;
562       return "<p>" inline( substr(block, 1, st - 1) ) "</p>\n" \
563              _block( substr(block, st + len) );
564     }
565
566   # Unordered list
567   } else if ( match( block, "^ ? ? ?[-+*][ \t]+[^\n]+(\n|$)" \
568                             "(([ \t]*\n)* ? ? ?[-+*][ \t]+[^\n]+(\n|$)" \
569                             "|([ \t]*\n)*( ? ? ?\t|  +)[^\n]+(\n|$)" \
570                             "|[^\n]+(\n|$))*" ) ) {
571   list = substr( block, 1, RLENGTH);
572   block = substr( block, RLENGTH + 1);
573   indent = length( gensub(/[-+*][ \t]+[^\n]+.*$/, "", 1, list) );
574
575   gsub("(^|\n) {0," indent "}", "\n", list);
576   return "\n<ul>\n" _list( substr(list, 2) ) "</ul>\n" _block( block );
577
578   # Ordered list
579   } else if ( match( block, "^ ? ? ?([0-9]+|#)\\.[ \t]+[^\n]+(\n|$)" \
580                             "(([ \t]*\n)* ? ? ?([0-9]+|#)\\.[ \t]+[^\n]+(\n|$)" \
581                             "|([ \t]*\n)*( ? ? ?\t|  +)[^\n]+(\n|$)" \
582                             "|[^\n]+(\n|$))*" ) ) {
583   list = substr( block, 1, RLENGTH);
584   block = substr( block, RLENGTH + 1);
585   indent = length( gensub(/([0-9]+|#)\.[ \t]+[^\n]+.*$/, "", 1, list) );
586
587   gsub("(^|\n) {0," indent "}", "\n", list);
588   return "\n<ol>\n" _list( substr(list, 2) ) "</ol>\n" _block( block );
589
590   # First Order Heading H1
591   } else if ( match( block, /^[^\n]+\n===+(\n|$)/ ) ) {
592     len = RLENGTH;
593
594     return headline(1, gensub( /\n.*$/, "", "g", block )) \
595            _block( substr( block, len + 1 ) );
596
597   # Second Order Heading H2
598   } else if ( match( block, /^[^\n]+\n---+(\n|$)/ ) ) {
599     len = RLENGTH;
600
601     return headline(2, gensub( /\n.*$/, "", "g", block )) \
602            _block( substr( block, len + 1) );
603
604   # Nth Order Heading H1 H2 H3 H4 H5 H6
605   } else if ( match( block, /^#{1,6}[ \t]*[^\n]+([ \t]*#*)(\n|$)/ ) ) {
606     len = RLENGTH;
607
608     return headline( \
609              length( gensub( /^(#{1,6}).*$/, "\\1", "g", block ) ), \
610              gensub(/^#{1,6}[ \t]*(([^ \t\n]+|[ \t]+[^ \t\n#]|[ \t]+#+[^\n#])+)([ \t]*#*)(\n.*)?$/, "\\1", 1, block) \
611            ) \
612            _block( substr( block, len + 1) );
613
614   # block images (wrapped in <figure>)
615   } else if ( match(block, /^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n|$)/) ) {
616     len = RLENGTH;
617     text   = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\1", "g", block);
618     href   = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\2", "g", block);
619     title  = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\4", "g", block);
620     attrib = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\6", "g", block);
621     if ( title && attrib ) {
622       return "<figure data-src=\"" URL(href, 1) "\" class=\"" HTML(attrib) "\">" \
623                "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\" class=\"" HTML(attrib) "\">" \
624                "<figcaption>" inline(title) "</figcaption>" \
625              "</figure>\n\n" \
626              _block( substr( block, len + 1) );
627     } else if ( title ) {
628       return "<figure data-src=\"" URL(href, 1) "\">" \
629                "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\">" \
630                "<figcaption>" inline(title) "</figcaption>" \
631              "</figure>\n\n" \
632              _block( substr( block, len + 1) );
633     } else if ( attrib ) {
634       return "<figure data-src=\"" URL(href, 1) "\" class=\"" HTML(attrib) "\">" \
635                "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\" class=\"" HTML(attrib) "\">" \
636              "</figure>\n\n" \
637              _block( substr( block, len + 1) );
638     } else {
639       return "<figure data-src=\"" URL(href, 1) "\">" \
640                "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\">" \
641              "</figure>\n\n" \
642              _block( substr( block, len + 1) );
643     }
644
645   # reference style images (block)
646   } else if ( match(line, /^!\[([^]]*)\] ?\[([^]]*)\](\n|$)/ ) ) {
647     len = RLENGTH;
648     text = gensub(/^!\[([^\n]*)\] ?\[([^\n]*)\](\n.*)?$/, "\\1", 1, block);
649       id = gensub(/^!\[([^\n]*)\] ?\[([^\n]*)\](\n.*)?$/, "\\2", 1, block);
650     if ( ! id ) id = text;
651     if ( rl_href[id] && rl_title[id] ) {
652       return "<figure data-src=\"" URL(rl_href[id], 1) "\">" \
653                "<img src=\"" URL(rl_href[id], 1) "\" alt=\"" HTML(text) "\">" \
654                "<figcaption>" inline(rl_title[id]) "</figcaption>" \
655              "</figure>\n\n" \
656              _block( substr( block, len + 1) );
657     } else if ( rl_href[id] ) {
658       return "<figure data-src=\"" URL(rl_href[id], 1) "\">" \
659                "<img src=\"" URL(rl_href[id], 1) "\" alt=\"" HTML(text) "\">" \
660              "</figure>\n\n" \
661              _block( substr( block, len + 1) );
662     } else {
663       return "<p>" HTML(substr(block, 1, len)) "</p>\n" _block( substr(block, len + 1) );
664     }
665
666   # Macros (standalone <<macro>> calls handled as block, so they are not wrapped in paragraph)
667   } else if ( AllowMacros && match( block, /^<<(([^>]|>[^>])+)>>(\n|$)/) ) {
668     len = RLENGTH;
669     text = gensub(/^<<(([^>]|>[^>])+)>>(\n.*)?$/, "\\1", 1, block);
670     return macro(text) _block(substr(block, len + 1) );
671
672   # Split paragraphs
673   } else if ( match( block, /(^|\n)[[:space:]]*(\n|$)/) ) {
674     len = RLENGTH; st = RSTART;
675     return _block( substr(block, 1, st - 1) ) "\n" \
676            _block( substr(block, st + len) );
677
678   # Horizontal rule
679   } else if ( match( block, /(^|\n) ? ? ?((\* *){3,}|(- *){3,}|(_ *){3,})($|\n)/) ) {
680     len = RLENGTH; st = RSTART;
681     return _block(substr(block, 1, st - 1)) "<hr>\n" _block(substr(block, st + len));
682
683   # Plain paragraph
684   } else {
685     return "<p>" inline(block) "</p>\n";
686   }
687 }
688
689 function _list( block, last, LOCAL, p) {
690   if ( ! length(block) ) return "";
691   gsub(/^([-+*]|[0-9]+\.|#\.)(  ? ? ?|\t)/, "", block)
692
693   # slice next list item from input
694   if ( match( block, /\n([-+*]|[0-9]+\.|#\.)[ \t]+[^\n]+/) ) {
695     p = substr( block, 1, RSTART);
696     block = substr( block, RSTART + 1);
697   } else {
698     p = block; block = "";
699   }
700   sub( /\n +([-+*]|[0-9]+\.|#\.)/, "\n&", p );
701
702   # if this should be a paragraph item
703   # either previous item (last) or current item (p) contains blank lines
704   if (match(last, /\n[[:space:]]*\n/) || match(p, /\n[[:space:]]*\n/) ) {
705     last = p; p = _nblock(p);
706   } else {
707     last = p; p = _nblock(p);
708     sub( /^<p>/, "", p );
709     sub( /<\/p>\n/, "", p );
710   }
711   sub( /\n$/, "", p );
712
713   # Task List (pandoc, custom)
714          if ( p ~ /^\[ \].*/ )       { return "<li class=\"task pending\"><input type=checkbox disabled>" \
715                                               substr(p, 4) "</li>\n" _list( block, last );
716   } else if ( p ~ /^\[-\].*/ )       { return "<li class=\"task negative\"><input type=checkbox disabled>" \
717                                               substr(p, 4) "</li>\n" _list( block, last );
718   } else if ( p ~ /^\[\?\].*/ )      { return "<li class=\"task unsure\"><input type=checkbox disabled>" \
719                                               substr(p, 4) "</li>\n" _list( block, last );
720   } else if ( p ~ /^\[\/\].*/ )      { return "<li class=\"task partial\"><input type=checkbox disabled>" \
721                                               substr(p, 4) "</li>\n" _list( block, last );
722   } else if ( p ~ /^\[[xX]\].*/ )    { return "<li class=\"task done\"><input type=checkbox disabled checked>" \
723                                             substr(p, 4) "</li>\n" _list( block, last );
724   } else if ( p ~ /^<p>\[ \].*/ )    { return "<li class=\"task pending\"><p><input type=checkbox disabled>" \
725                                               substr(p, 7) "</li>\n" _list( block, last );
726   } else if ( p ~ /^<p>\[-\].*/ )    { return "<li class=\"task negative\"><p><input type=checkbox disabled>" \
727                                               substr(p, 7) "</li>\n" _list( block, last );
728   } else if ( p ~ /^<p>\[\?\].*/ )   { return "<li class=\"task unsure\"><p><input type=checkbox disabled>" \
729                                               substr(p, 7) "</li>\n" _list( block, last );
730   } else if ( p ~ /^<p>\[\/\].*/ )   { return "<li class=\"task partial\"><p><input type=checkbox disabled>" \
731                                               substr(p, 7) "</li>\n" _list( block, last );
732   } else if ( p ~ /^<p>\[[xX]\].*/ ) { return "<li class=\"task done\"><p><input type=checkbox disabled checked>" \
733                                               substr(p, 7) "</li>\n" _list( block, last );
734   } else { return "<li>" p "</li>\n" _list( block, last ); }
735 }
736
737 BEGIN {
738   # Global Vars
739   file = ""; rl_href[""] = ""; rl_title[""] = "";
740   if (ENVIRON["MD_HTML"] == "true") { AllowHTML = "true"; }
741   HL[1] = 0; HL[2] = 0; HL[3] = 0; HL[4] = 0; HL[5] = 0; HL[6] = 0;
742   # hls = "0 0 0 0 0 0";
743
744   # Buffering of full file ist necessary, e.g. to find reference links
745   while (getline) { file = file $0 "\n"; }
746   # Clean up MS-DOS line breaks
747   gsub(/\r\n/, "\n", file);
748
749   # Fill array of reference links
750   f = file; rl_id;
751   re_reflink = "(^|\n) ? ? ?\\[([^]\n]+)\\]: ([^ \t\n]+)(\n?[ \t]+(\"([^\"]+)\"|'([^']+)'|\\(([^)]+)\\)))?(\n|$)";
752   # /(^|\n) ? ? ?\[([^]\n]+)\]: ([^ \t\n]+)(\n?[ \t]+("([^"]+)"|'([^']+)'|\(([^)]+)\)))?(\n|$)/
753   while ( match(f, re_reflink ) ) {
754     rl_id           = gensub( re_reflink, "\\2", 1, substr(f, RSTART, RLENGTH) );
755     rl_href[rl_id]  = gensub( re_reflink, "\\3", 1, substr(f, RSTART, RLENGTH) );
756     rl_title[rl_id] = gensub( re_reflink, "\\5", 1, substr(f, RSTART, RLENGTH) );
757     f = substr(f, RSTART + RLENGTH);
758     rl_title[rl_id] = substr( rl_title[rl_id], 2, length(rl_title[rl_id]) - 2 );
759     if ( rl_href[rl_id] ~ /<.*>/ ) rl_href[rl_id] = substr( rl_href[rl_id], 2, length(rl_href[rl_id]) - 2 );
760   }
761   # Clear reflinks from File
762   while( gsub(re_reflink, "\n", file ) );
763   # for (n in rl_href) { debug(n " | " rl_href[n] " | " rl_title[n] ); }
764
765   # Run Block Processing -> The Actual Markdown!
766   printf "%s", _nblock( file );
767 }