]> git.plutz.net Git - cgilite/blob - markdown.awk
unified headline function
[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]+ ){5}[0-9]+)$/, "\\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 = HL[1] " " HL[2] " " HL[3] " " HL[4] " " HL[5] " " HL[6];
319
320   return sec "<section class=\"h1\"" ((blvl > 10)?"":" id=\"" hid "\"") ">" \
321          "<h1>" inline( htxt ) \
322          ((blvl > 0)?"":"<a class=\"anchor\" href=\"#" hid "\"></a>") \
323          "</h1>\n\n";
324 }
325
326 # Nested Block, resets heading counters
327 function _nblock( block, LOCAL, hlsav, sec ) {
328   hlsav = hstack;
329   hstack = "0 0 0 0 0 0";
330
331   # Block Level
332   blvl++;
333
334   block = _block( block );
335   split( gensub( /^(.* )?(([0-9]+ ){5}[0-9]+)$/, "\2" ,"1", hstack),  HL);
336   sec = ""; for ( n = 1; n <= 6; n++ ) { sec = sec (HL[n]?"</section>":""); }
337   hstack = hlsav; blvl--;
338   return block sec;
339 }
340
341 function _block( block, LOCAL, st, len, hlvl, htxt, sec, guard, code, indent, attrib ) {
342   gsub( /^\n+|\n+$/, "", block );
343
344   if ( block == "" ) {
345     return "";
346
347   # HTML #2 #3 #4 $5
348   } else if ( AllowHTML && match( block, /(^|\n) ? ? ?(<!--([^-]|-[^-]|--[^>])*(-->|$)|<\?([^\?]|\?[^>])*(\?>|$)|<![A-Z][^>]*(>|$)|<!\[CDATA\[([^\]]|\][^\]]|\]\][^>])*(\]\]>|$))/) ) {
349     len = RLENGTH; st = RSTART;
350     return _block(substr(block, 1, st - 1)) substr(block, st, len) _block(substr(block, st + len));
351
352   # HTML #6
353   } 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|$)/) ) {
354     len = RLENGTH; st = RSTART;
355     return _block(substr(block, 1, st - 1)) substr(block, st, len) _block(substr(block, st + len));
356
357   # HTML #1
358   } else if ( AllowHTML && match( tolower(block), /(^|\n) ? ? ?<(script|pre|style)([[:space:]\n>]).*(<\/script>|<\/pre>|<\/style>|$)/) ) {
359     len = RLENGTH; st = RSTART;
360     match( tolower(substr(block, st, len)), /(<\/script>|<\/pre>|<\/style>)/);
361     len = RSTART + RLENGTH;
362     return _block(substr(block, 1, st - 1)) substr(block, st, len) _block(substr(block, st + len));
363
364   # HTML #7
365   } 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|$)/) ) {
366     len = RLENGTH; st = RSTART;
367     return substr(block, st, len) _block(substr(block, st + len));
368
369   # Metadata (custom, block starting with %something)
370   # Metadata is ignored but can be interpreted externally
371   } else if ( match(block, /^%[a-zA-Z]+([[:space:]][^\n]*)?(\n|$)(%[a-zA-Z]+([[:space:]][^\n]*)?(\n|$)|%([[:space:]][^\n]*)?(\n|$)|[ \t]+[^\n[:space:]][^\n]*(\n|$))*/) ) {
372     len = RLENGTH; st = RSTART;
373     return  _block( substr( block, len + 1) );
374  
375   # Blockquote (leading >)
376   } else if ( match( block, /^> /) ) {
377     match( block, /(^|\n)[[:space:]]*(\n|$)/ ) || match(block, /$/);
378     len = RLENGTH; st = RSTART;
379     return "<blockquote>\n" _nblock( gensub( /(^|\n)> /, "\n", "g", substr(block, 1, st - 1) ) ) "</blockquote>\n\n" \
380            _block( substr(block, st + len) );
381
382   # Pipe Tables (pandoc / php md / gfm )
383   } else if ( match(block, "^((\\|)?([^\n]+\\|)+[^\n]+(\\|)?)\n" \
384                            "((\\|)?:?(-+:?[\\|+])+:?-+:?(\\|)?)\n" \
385                            "((\\|)?([^\n]+\\|)+[^\n]+(\\|)?(\n|$))+" ) ) {
386     len = RLENGTH; st = RSTART;
387     #initialize empty arrays
388     split("", talign); split("", tarray);
389     cols = 0; cnt=0; ttext = "";
390
391     # table header and alignment
392     split( gensub( /(^\||\|$)/, "", "g", \
393            gensub( /(^|[^\\])\\\|/, "\\1\\&#x7C;", "g", \
394            substr(block, 1, match(block, /(\n|$)/)) \
395     )), tarray, /\|/);
396     block = substr(block, match(block, /(\n|$)/) + 1 );
397     cols = split( \
398            gensub( /(^\||\|$)/, "", "g", \
399            substr(block, 1, match(block, /(\n|$)/)) \
400     ), talign, /[+\|]/);
401     block = substr(block, match(block, /(\n|$)/) + 1 );
402
403     for( cnt = 1; cnt < cols; cnt++ ) {
404            if (match(talign[cnt], /:-+:/)) talign[cnt]="center";
405       else if (match(talign[cnt],  /-+:/)) talign[cnt]="right";
406       else if (match(talign[cnt],  /:-+/)) talign[cnt]="left";
407       else talign[cnt]="";
408     }
409
410     ttext = "<thead>\n<tr>"
411     for (cnt = 1; cnt < cols; cnt++)
412       ttext = ttext "<th align=\"" talign[cnt] "\">" inline(tarray[cnt]) "</th>"
413     ttext = ttext "</tr>\n</thead><tbody>\n"
414
415     while ( match(block, "^((\\|)?([^\n]+\\|)+[^\n]+(\\|)?(\n|$))+" ) ){
416       split( gensub( /(^\||\|$)/, "", "g", \
417              gensub( /(^|[^\\])\\\|/, "\\1\\&#x7C;", "g", \
418              substr(block, 1, match(block, /(\n|$)/)) \
419       )), tarray, /\|/);
420       block = substr(block, match(block, /(\n|$)/) + 1 );
421
422       ttext = ttext "<tr>"
423       for (cnt = 1; cnt < cols; cnt++)
424         ttext = ttext "<td align=\"" talign[cnt] "\">" inline(tarray[cnt]) "</td>"
425       ttext = ttext "</tr>\n"
426     }
427     return "<table>" ttext "</tbody></table>\n" _block(block);
428
429   # Grid Tables (pandoc)
430   # (with, and without header)
431   } else if ( match( block, "^\\+(-+\\+)+\n" \
432                             "(\\|([^\n]+\\|)+\n)+" \
433                             "(\\+(:?=+:?\\+)+)\n" \
434                            "((\\|([^\n]+\\|)+\n)+" \
435                              "\\+(-+\\+)+(\n|$))+" \
436                    ) || \
437               match( block, "^()()()" \
438                             "(\\+(:?-+:?\\+)+)\n" \
439                            "((\\|([^\n]+\\|)+\n)+" \
440                              "\\+(-+\\+)+(\n|$))+" \
441   ) ) {
442     len = RLENGTH; st = RSTART;
443     #initialize empty arrays
444     split("", talign); split("", tarray); split("", tread);
445     cols = 0; cnt=0; ttext = "";
446
447     # Column Count
448     cols = split(   gensub( "^(\\+(:?-+:?\\+)+)(\n.*)*$", "\\1", 1, block), tread, /\+/) - 2;
449     # debug(" Cols: " gensub( "^(\\+(:?-+:?\\+)+)(\n.*)*$", "\\1", 1, block ));
450
451     # table alignment
452     split( gensub( "^(.*\n)?\\+((:?=+:?\\+|(:-+|-+:|:-+:)\\+)+)(\n.*)$", "\\2", "g", block ), talign, /\+/ );
453     # debug("Align: " gensub( "^(.*\n)?\\+((:?=+:?\\+|(:-+|-+:|:-+:)\\+)+)(\n.*)$", "\\2", "g", block ));
454
455     for (cnt = 1; cnt <= cols; cnt++) {
456            if (match(talign[cnt], /:(-+|=+):/)) talign[cnt]="center";
457       else if (match(talign[cnt],  /(-+|=+):/)) talign[cnt]="right";
458       else if (match(talign[cnt], /:(-+|=+)/ )) talign[cnt]="left";
459       else talign[cnt]="";
460     }
461
462     if ( match(block, "^\\+(-+\\+)+\n" \
463                       "(\\|([^\n]+\\|)+\n)+" \
464                        "\\+(:?=+:?\\+)+\n" \
465                      "((\\|([^\n]+\\|)+\n)+" \
466                        "\\+(-+\\+)+(\n|$))+" \
467     ) ) {
468       # table header
469       block = substr(block, match(block, /(\n|$)/) + 1 );
470       while ( match(block, "^\\|([^\n]+\\|)+\n") ) {
471         split( gensub( /(^\||\|$)/, "", "g", \
472                  gensub( /(^|[^\\])\\\|/, "\\1\\&#x7C;", "g", \
473                    substr(block, 1, match(block, /(\n|$)/)) \
474         )), tread, /\|/);
475         block = substr(block, match(block, /(\n|$)/) + 1 );
476         for (cnt = 1; cnt <= cols; cnt++)
477           tarray[cnt] = tarray[cnt] "\n" tread[cnt];
478       }
479
480       ttext = "<thead>\n<tr>"
481       for (cnt = 1; cnt <= cols; cnt++)
482         ttext = ttext "<th align=\"" talign[cnt] "\">" _nblock(tarray[cnt]) "</th>"
483       ttext = ttext "</tr>\n</thead>"
484     }
485
486     # table body
487     block = substr(block, match(block, /(\n|$)/) + 1 );
488     ttext = ttext "<tbody>\n"
489
490     while ( match(block, /^((\|([^\n]+\|)+\n)+\+(-+\+)+(\n|$))+/ ) ){
491       split("", tarray);
492       while ( match(block, /^\|([^\n]+\|)+\n/) ) {
493         split( gensub( /(^\||\|$)/, "", "g", \
494                gensub( /(^|[^\\])\\\|/, "\\1\\&#x7C;", "g", \
495                substr(block, 1, match(block, /(\n|$)/)) \
496         )), tread, /\|/);
497         block = substr(block, match(block, /(\n|$)/) + 1 );
498         for (cnt = 1; cnt <= cols; cnt++)
499           tarray[cnt] = tarray[cnt] "\n" tread[cnt];
500       }
501       block = substr(block, match(block, /(\n|$)/) + 1 );
502
503       ttext = ttext "<tr>"
504       for (cnt = 1; cnt <= cols; cnt++)
505         ttext = ttext "<td align=\"" talign[cnt] "\">" _nblock(tarray[cnt]) "</td>"
506       ttext = ttext "</tr>\n"
507     }
508     return "<table>" ttext "</tbody></table>\n" _nblock(block);
509
510   # Line Blocks (pandoc)
511   } else if ( match(block, /^\| [^\n]*(\n|$)(\| [^\n]*(\n|$)|[ \t]+[^\n[:space:]][^\n]*(\n|$))*/) ) {
512     len = RLENGTH; st = RSTART;
513     code = substr(block, 1, len);
514     gsub(/\n[[:space:]]+/, " ", code);
515     gsub(/\n\| /, "\n", code);
516     gsub(/^\| |\n$/, "", code);
517     return "<div class=\"line-block\">" gensub(/\n/, "<br>\n", "g", inline( code )) "</div>\n" \
518            _block( substr( block, len + 1) );
519
520   # Indented Code Block
521   } else if ( match(block, /^(    |\t)( *\t*[^ \t\n]+ *\t*)+(\n|$)((    |\t)[^\n]+(\n|$)|[ \t]*(\n|$))*/) ) {
522     len = RLENGTH; st = RSTART;
523     code = substr(block, 1, len);
524     gsub(/(^|\n)(    |\t)/, "\n", code);
525     gsub(/^\n|\n+$/, "", code);
526     return "<pre><code>" HTML( code ) "</code></pre>\n" \
527            _block( substr( block, len + 1 ) );
528
529   # Fenced Divs (pandoc, custom)
530   } else if ( match( block, /^(:::+)/ ) ) {
531     guard = substr( block, 1, RLENGTH );
532     code = gensub(/^[^\n]+\n/, "", 1, block);
533     attrib = gensub(/^:::+[ \t]*\{?[ \t]*([^\}\n]*)\}?[ \t]*\n.*$/, "\\1", 1, block);
534     gsub(/[^a-zA-Z0-9_-]+/, " ", attrib);
535     gsub(/(^ | $)/, "", attrib);
536     if ( match(code, "(^|\n)" guard "+(\n|$)" ) ) {
537       len = RLENGTH; st = RSTART;
538       return "<div class=\"" attrib "\">" _nblock( substr(code, 1, st - 1) ) "</div>\n" \
539              _block( substr( code, st + len ) );
540     } else {
541       match( block, /(^|\n)[[:space:]]*(\n|$)/ ) || match( block, /$/ );
542       len = RLENGTH; st = RSTART;
543       return "<p>" inline( substr(block, 1, st - 1) ) "</p>\n" \
544              _block( substr(block, st + len) );
545     }
546
547   # Fenced Code Block (pandoc)
548   } else if ( match( block, /^(~~~+|```+)/ ) ) {
549     guard = substr( block, 1, RLENGTH );
550     code = gensub(/^[^\n]+\n/, "", 1, block);
551     attrib = gensub(/^(~~~+|```+)[ \t]*\{?[ \t]*([^\}\n]*)\}?[ \t]*\n.*$/, "\\2", 1, block);
552     gsub(/[^a-zA-Z0-9_-]+/, " ", attrib);
553     gsub(/(^ | $)/, "", attrib);
554     if ( match(code, "(^|\n)" guard "+(\n|$)" ) ) {
555       len = RLENGTH; st = RSTART;
556       return "<pre><code class=\"" attrib "\">" HTML( substr(code, 1, st - 1) ) "</code></pre>\n" \
557              _block( substr( code, st + len ) );
558     } else {
559       match( block, /(^|\n)[[:space:]]*(\n|$)/ ) || match( block, /$/ );
560       len = RLENGTH; st = RSTART;
561       return "<p>" inline( substr(block, 1, st - 1) ) "</p>\n" \
562              _block( substr(block, st + len) );
563     }
564
565   # Unordered list
566   } else if ( match( block, "^ ? ? ?[-+*][ \t]+[^\n]+(\n|$)" \
567                             "(([ \t]*\n)* ? ? ?[-+*][ \t]+[^\n]+(\n|$)" \
568                             "|([ \t]*\n)*( ? ? ?\t|  +)[^\n]+(\n|$)" \
569                             "|[^\n]+(\n|$))*" ) ) {
570   list = substr( block, 1, RLENGTH);
571   block = substr( block, RLENGTH + 1);
572   indent = length( gensub(/[-+*][ \t]+[^\n]+.*$/, "", 1, list) );
573
574   gsub("(^|\n) {0," indent "}", "\n", list);
575   return "\n<ul>\n" _list( substr(list, 2) ) "</ul>\n" _block( block );
576
577   # Ordered list
578   } else if ( match( block, "^ ? ? ?([0-9]+|#)\\.[ \t]+[^\n]+(\n|$)" \
579                             "(([ \t]*\n)* ? ? ?([0-9]+|#)\\.[ \t]+[^\n]+(\n|$)" \
580                             "|([ \t]*\n)*( ? ? ?\t|  +)[^\n]+(\n|$)" \
581                             "|[^\n]+(\n|$))*" ) ) {
582   list = substr( block, 1, RLENGTH);
583   block = substr( block, RLENGTH + 1);
584   indent = length( gensub(/([0-9]+|#)\.[ \t]+[^\n]+.*$/, "", 1, list) );
585
586   gsub("(^|\n) {0," indent "}", "\n", list);
587   return "\n<ol>\n" _list( substr(list, 2) ) "</ol>\n" _block( block );
588
589   # First Order Heading H1
590   } else if ( match( block, /^[^\n]+\n===+(\n|$)/ ) ) {
591     len = RLENGTH;
592
593     return headline(1, gensub( /\n.*$/, "", "g", block )) \
594            _block( substr( block, len + 1 ) );
595
596   # Second Order Heading H2
597   } else if ( match( block, /^[^\n]+\n---+(\n|$)/ ) ) {
598     len = RLENGTH;
599
600     return headline(2, gensub( /\n.*$/, "", "g", block )) \
601            _block( substr( block, len + 1) );
602
603   # Nth Order Heading H1 H2 H3 H4 H5 H6
604   } else if ( match( block, /^#{1,6}[ \t]*[^\n]+([ \t]*#*)(\n|$)/ ) ) {
605     len = RLENGTH;
606
607     return headline( \
608              length( gensub( /^(#{1,6}).*$/, "\\1", "g", block ) ), \
609              gensub(/^#{1,6}[ \t]*(([^ \t\n]+|[ \t]+[^ \t\n#]|[ \t]+#+[^\n#])+)([ \t]*#*)(\n.*)?$/, "\\1", 1, block) \
610            ) \
611            _block( substr( block, len + 1) );
612
613   # block images (wrapped in <figure>)
614   } else if ( match(block, /^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n|$)/) ) {
615     len = RLENGTH;
616     text   = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\1", "g", block);
617     href   = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\2", "g", block);
618     title  = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\4", "g", block);
619     attrib = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\6", "g", block);
620     if ( title && attrib ) {
621       return "<figure data-src=\"" URL(href, 1) "\" class=\"" HTML(attrib) "\">" \
622                "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\" class=\"" HTML(attrib) "\">" \
623                "<figcaption>" inline(title) "</figcaption>" \
624              "</figure>\n\n" \
625              _block( substr( block, len + 1) );
626     } else if ( title ) {
627       return "<figure data-src=\"" URL(href, 1) "\">" \
628                "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\">" \
629                "<figcaption>" inline(title) "</figcaption>" \
630              "</figure>\n\n" \
631              _block( substr( block, len + 1) );
632     } else if ( attrib ) {
633       return "<figure data-src=\"" URL(href, 1) "\" class=\"" HTML(attrib) "\">" \
634                "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\" class=\"" HTML(attrib) "\">" \
635              "</figure>\n\n" \
636              _block( substr( block, len + 1) );
637     } else {
638       return "<figure data-src=\"" URL(href, 1) "\">" \
639                "<img src=\"" URL(href, 1) "\" alt=\"" HTML(text) "\">" \
640              "</figure>\n\n" \
641              _block( substr( block, len + 1) );
642     }
643
644   # reference style images (block)
645   } else if ( match(line, /^!\[([^]]*)\] ?\[([^]]*)\](\n|$)/ ) ) {
646     len = RLENGTH;
647     text = gensub(/^!\[([^\n]*)\] ?\[([^\n]*)\](\n.*)?$/, "\\1", 1, block);
648       id = gensub(/^!\[([^\n]*)\] ?\[([^\n]*)\](\n.*)?$/, "\\2", 1, block);
649     if ( ! id ) id = text;
650     if ( rl_href[id] && rl_title[id] ) {
651       return "<figure data-src=\"" URL(rl_href[id], 1) "\">" \
652                "<img src=\"" URL(rl_href[id], 1) "\" alt=\"" HTML(text) "\">" \
653                "<figcaption>" inline(rl_title[id]) "</figcaption>" \
654              "</figure>\n\n" \
655              _block( substr( block, len + 1) );
656     } else if ( rl_href[id] ) {
657       return "<figure data-src=\"" URL(rl_href[id], 1) "\">" \
658                "<img src=\"" URL(rl_href[id], 1) "\" alt=\"" HTML(text) "\">" \
659              "</figure>\n\n" \
660              _block( substr( block, len + 1) );
661     } else {
662       return "<p>" HTML(substr(block, 1, len)) "</p>\n" _block( substr(block, len + 1) );
663     }
664
665   # Macros (standalone <<macro>> calls handled as block, so they are not wrapped in paragraph)
666   } else if ( AllowMacros && match( block, /^<<(([^>]|>[^>])+)>>(\n|$)/) ) {
667     len = RLENGTH;
668     text = gensub(/^<<(([^>]|>[^>])+)>>(\n.*)?$/, "\\1", 1, block);
669     return macro(text) _block(substr(block, len + 1) );
670
671   # Split paragraphs
672   } else if ( match( block, /(^|\n)[[:space:]]*(\n|$)/) ) {
673     len = RLENGTH; st = RSTART;
674     return _block( substr(block, 1, st - 1) ) "\n" \
675            _block( substr(block, st + len) );
676
677   # Horizontal rule
678   } else if ( match( block, /(^|\n) ? ? ?((\* *){3,}|(- *){3,}|(_ *){3,})($|\n)/) ) {
679     len = RLENGTH; st = RSTART;
680     return _block(substr(block, 1, st - 1)) "<hr>\n" _block(substr(block, st + len));
681
682   # Plain paragraph
683   } else {
684     return "<p>" inline(block) "</p>\n";
685   }
686 }
687
688 function _list( block, last, LOCAL, p) {
689   if ( ! length(block) ) return "";
690   gsub(/^([-+*]|[0-9]+\.|#\.)(  ? ? ?|\t)/, "", block)
691
692   # slice next list item from input
693   if ( match( block, /\n([-+*]|[0-9]+\.|#\.)[ \t]+[^\n]+/) ) {
694     p = substr( block, 1, RSTART);
695     block = substr( block, RSTART + 1);
696   } else {
697     p = block; block = "";
698   }
699   sub( /\n +([-+*]|[0-9]+\.|#\.)/, "\n&", p );
700
701   # if this should be a paragraph item
702   # either previous item (last) or current item (p) contains blank lines
703   if (match(last, /\n[[:space:]]*\n/) || match(p, /\n[[:space:]]*\n/) ) {
704     last = p; p = _nblock(p);
705   } else {
706     last = p; p = _nblock(p);
707     sub( /^<p>/, "", p );
708     sub( /<\/p>\n/, "", p );
709   }
710   sub( /\n$/, "", p );
711
712   # Task List (pandoc, custom)
713          if ( p ~ /^\[ \].*/ )       { return "<li class=\"task pending\"><input type=checkbox disabled>" \
714                                               substr(p, 4) "</li>\n" _list( block, last );
715   } else if ( p ~ /^\[-\].*/ )       { return "<li class=\"task negative\"><input type=checkbox disabled>" \
716                                               substr(p, 4) "</li>\n" _list( block, last );
717   } else if ( p ~ /^\[\?\].*/ )      { return "<li class=\"task unsure\"><input type=checkbox disabled>" \
718                                               substr(p, 4) "</li>\n" _list( block, last );
719   } else if ( p ~ /^\[\/\].*/ )      { return "<li class=\"task partial\"><input type=checkbox disabled>" \
720                                               substr(p, 4) "</li>\n" _list( block, last );
721   } else if ( p ~ /^\[[xX]\].*/ )    { return "<li class=\"task done\"><input type=checkbox disabled checked>" \
722                                             substr(p, 4) "</li>\n" _list( block, last );
723   } else if ( p ~ /^<p>\[ \].*/ )    { return "<li class=\"task pending\"><p><input type=checkbox disabled>" \
724                                               substr(p, 7) "</li>\n" _list( block, last );
725   } else if ( p ~ /^<p>\[-\].*/ )    { return "<li class=\"task negative\"><p><input type=checkbox disabled>" \
726                                               substr(p, 7) "</li>\n" _list( block, last );
727   } else if ( p ~ /^<p>\[\?\].*/ )   { return "<li class=\"task unsure\"><p><input type=checkbox disabled>" \
728                                               substr(p, 7) "</li>\n" _list( block, last );
729   } else if ( p ~ /^<p>\[\/\].*/ )   { return "<li class=\"task partial\"><p><input type=checkbox disabled>" \
730                                               substr(p, 7) "</li>\n" _list( block, last );
731   } else if ( p ~ /^<p>\[[xX]\].*/ ) { return "<li class=\"task done\"><p><input type=checkbox disabled checked>" \
732                                               substr(p, 7) "</li>\n" _list( block, last );
733   } else { return "<li>" p "</li>\n" _list( block, last ); }
734 }
735
736 BEGIN {
737   # Global Vars
738   file = ""; rl_href[""] = ""; rl_title[""] = "";
739   if (ENVIRON["MD_HTML"] == "true") { AllowHTML = "true"; }
740   HL[1] = 0; HL[2] = 0; HL[3] = 0; HL[4] = 0; HL[5] = 0; HL[6] = 0;
741   # hls = "0 0 0 0 0 0";
742
743   # Buffering of full file ist necessary, e.g. to find reference links
744   while (getline) { file = file $0 "\n"; }
745   # Clean up MS-DOS line breaks
746   gsub(/\r\n/, "\n", file);
747
748   # Fill array of reference links
749   f = file; rl_id;
750   re_reflink = "(^|\n) ? ? ?\\[([^]\n]+)\\]: ([^ \t\n]+)(\n?[ \t]+(\"([^\"]+)\"|'([^']+)'|\\(([^)]+)\\)))?(\n|$)";
751   # /(^|\n) ? ? ?\[([^]\n]+)\]: ([^ \t\n]+)(\n?[ \t]+("([^"]+)"|'([^']+)'|\(([^)]+)\)))?(\n|$)/
752   while ( match(f, re_reflink ) ) {
753     rl_id           = gensub( re_reflink, "\\2", 1, substr(f, RSTART, RLENGTH) );
754     rl_href[rl_id]  = gensub( re_reflink, "\\3", 1, substr(f, RSTART, RLENGTH) );
755     rl_title[rl_id] = gensub( re_reflink, "\\5", 1, substr(f, RSTART, RLENGTH) );
756     f = substr(f, RSTART + RLENGTH);
757     rl_title[rl_id] = substr( rl_title[rl_id], 2, length(rl_title[rl_id]) - 2 );
758     if ( rl_href[rl_id] ~ /<.*>/ ) rl_href[rl_id] = substr( rl_href[rl_id], 2, length(rl_href[rl_id]) - 2 );
759   }
760   # Clear reflinks from File
761   while( gsub(re_reflink, "\n", file ) );
762   # for (n in rl_href) { debug(n " | " rl_href[n] " | " rl_title[n] ); }
763
764   # Run Block Processing -> The Actual Markdown!
765   printf "%s", _nblock( file );
766 }