From: Paul Hänsch Date: Wed, 21 Jun 2023 18:42:01 +0000 (+0200) Subject: bugfix do not escape # character in link references X-Git-Url: http://git.plutz.net/?p=cgilite;a=commitdiff_plain;h=9b2f590896c10e83e0505cc57de52dc72d0dd12e bugfix do not escape # character in link references --- diff --git a/markdown.awk b/markdown.awk index 29dc64d..0e6d949 100755 --- a/markdown.awk +++ b/markdown.awk @@ -90,13 +90,13 @@ function HTML ( text ) { return text; } -function URL ( text ) { +function URL ( text, sharp ) { gsub( /&/, "%26", text ); gsub( /"/, "%22", text ); gsub( /'/, "%27", text ); gsub( /`/, "%60", text ); gsub( /\?/, "%3F", text ); - gsub( /#/, "%23", text ); + if (sharp) gsub( /#/, "%23", text ); gsub( /\[/, "%5B", text ); gsub( /\]/, "%5D", text ); gsub( / /, "%20", text ); @@ -196,16 +196,16 @@ function inline( line, LOCAL, len, code, href, guard ) { title = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?/, "\\4", "g", substr(line, 1, len) ); attrib = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?/, "\\6", "g", substr(line, 1, len) ); if ( title && attrib ) { - return "\""" \ + return "\""" \ inline( substr( line, len + 1) ); } else if ( title ) { - return "\""" \ + return "\""" \ inline( substr( line, len + 1) ); } else if ( attrib ) { - return "\""" \ + return "\""" \ inline( substr( line, len + 1) ); } else { - return "\""" \ + return "\""" \ inline( substr( line, len + 1) ); } @@ -216,10 +216,10 @@ function inline( line, LOCAL, len, code, href, guard ) { id = gensub(/^!\[([^\n]*)\] ?\[([^\n]*)\].*/, "\\2", 1, substr(line, 1, len) ); if ( ! id ) id = text; if ( rl_href[id] && rl_title[id] ) { - return "\""" \ + return "\""" \ inline( substr( line, len + 1) ); } else if ( rl_href[id] ) { - return "\""" \ + return "\""" \ inline( substr( line, len + 1) ); } else { return "" HTML(substr(line, 1, len)) inline( substr(line, len + 1) ); @@ -577,7 +577,7 @@ function _block( block, LOCAL, st, len, hlvl, htxt, sec, guard, code, indent, at for ( n = 1; n <= 6; n++ ) { sec = sec (HL[n]?"":""); } HL[1]++; HL[2] = 0; HL[3] = 0; HL[4] = 0; HL[5] = 0; HL[6] = 0; - hid = HL[1] ":" URL(gensub( /\n.*$/, "", "g", block )); + hid = HL[1] ":" URL(gensub( /\n.*$/, "", "g", block ), 1); return sec "
1)?"":" id=\"" hid "\"") ">" \ "

" inline( gensub( /\n.*$/, "", "g", block ) ) \ @@ -591,7 +591,7 @@ function _block( block, LOCAL, st, len, hlvl, htxt, sec, guard, code, indent, at for ( n = 2; n <= 6; n++ ) { sec = sec (HL[n]?"

":""); } HL[2]++; HL[3] = 0; HL[4] = 0; HL[5] = 0; HL[6] = 0; - hid= HL[1] "." HL[2] ":" URL(gensub( /\n.*$/, "", "g", block )); + hid= HL[1] "." HL[2] ":" URL(gensub( /\n.*$/, "", "g", block ), 1); return sec "
1)?"":" id=\"" hid "\"") ">" \ "

" inline( gensub( /\n.*$/, "", "g", block ) ) \ @@ -609,7 +609,7 @@ function _block( block, LOCAL, st, len, hlvl, htxt, sec, guard, code, indent, at for ( n = hlvl; n <= 6; n++ ) { sec = sec (HL[n]?"

":""); } HL[hlvl]++; for ( n = hlvl + 1; n <= 6; n++) { HL[n] = 0;} hid = HL[1]; for ( n = 2; n <= hlvl; n++) { hid = hid "." HL[n] ; } - hid = hid ":" URL(htxt); + hid = hid ":" URL(htxt, 1); return sec "
1)?"":" id=\"" hid "\"") ">" \ "" inline( htxt ) \ @@ -625,25 +625,25 @@ function _block( block, LOCAL, st, len, hlvl, htxt, sec, guard, code, indent, at title = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\4", "g", block); attrib = gensub(/^!\[([^]]*)\]\(([^"\)]+)([ \t]+"([^"]+)")?\)(\{([a-zA-Z \t-]*)\})?(\n.*)?$/, "\\6", "g", block); if ( title && attrib ) { - return "
" \ - "\""" \ + return "
" \ + "\""" \ "
" inline(title) "
" \ "
\n\n" \ _block( substr( block, len + 1) ); } else if ( title ) { - return "
" \ - "\""" \ + return "
" \ + "\""" \ "
" inline(title) "
" \ "
\n\n" \ _block( substr( block, len + 1) ); } else if ( attrib ) { - return "
" \ - "\""" \ + return "
" \ + "\""" \ "
\n\n" \ _block( substr( block, len + 1) ); } else { - return "
" \ - "\""" \ + return "
" \ + "\""" \ "
\n\n" \ _block( substr( block, len + 1) ); } @@ -655,14 +655,14 @@ function _block( block, LOCAL, st, len, hlvl, htxt, sec, guard, code, indent, at id = gensub(/^!\[([^\n]*)\] ?\[([^\n]*)\](\n.*)?$/, "\\2", 1, block); if ( ! id ) id = text; if ( rl_href[id] && rl_title[id] ) { - return "
" \ - "\""" \ + return "
" \ + "\""" \ "
" inline(rl_title[id]) "
" \ "
\n\n" \ _block( substr( block, len + 1) ); } else if ( rl_href[id] ) { - return "
" \ - "\""" \ + return "
" \ + "\""" \ "
\n\n" \ _block( substr( block, len + 1) ); } else {