File: poundsign.awk

package info (click to toggle)
reposurgeon 4.38-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,500 kB
  • sloc: sh: 4,832; makefile: 514; python: 485; lisp: 115; awk: 91; ruby: 19
file content (5 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (2)
1
2
3
4
5
# Massage URLs for use in asciidoc. Part of the documrntation toolchain
BEGIN { inside = 0 }
/^----/ { inside = !inside }
/^http.*]$/ { print }
!/^http.*]$/ { if (!inside) { gsub("#", "+#+", $0); } print $0 }