]> git.plutz.net Git - shellwiki/commitdiff
--nolink option for include macro
authorPaul Hänsch <paul@plutz.net>
Thu, 13 Oct 2022 13:44:09 +0000 (15:44 +0200)
committerPaul Hänsch <paul@plutz.net>
Thu, 13 Oct 2022 13:44:09 +0000 (15:44 +0200)
macros/include

index 5eb613aa4659ec96128a0a6da670fc71a17719ac..5254a2609c91623d2edae92bc14361fc71219407 100755 (executable)
@@ -4,7 +4,7 @@
 . "$_EXEC/acl.sh"
 . "$_EXEC/tools.sh"
 
-from='1'; to='$'; rev=''; items='$'
+from='1'; to='$'; rev=''; items='$'; link='true'
 
 while [ $# -gt 0 ]; do case $1 in
   --from) from="$2"; shift 2;;
@@ -14,6 +14,7 @@ while [ $# -gt 0 ]; do case $1 in
   --items) items="$2"; shift 2;;
   items=*) items="${1#*=}"; shift 1;;
   --rev|--reverse) rev="-r"; shift 1;;
+  --nolink) link=""; shift 1;;
   *) page="$1"; shift 1;;
 esac; done
 
@@ -21,7 +22,7 @@ if ! printf %s\\n "$from" |grep -qEx '[0-9]+|/([^/\\]|\\/|\\.)*/'; then
   debug 'Include macro invalid argument: "from"'
   exit 1
 fi
-if ! printf %s\\n "$to" |grep -qEx '[0-9]+|/([^/\\]|\\/|\\.)*/'; then
+if ! printf %s\\n "$to" |grep -qEx '\$|[0-9]+|/([^/\\]|\\/|\\.)*/'; then
   debug 'Include macro Invalid argument: "to"'
   exit 1
 fi
@@ -39,10 +40,14 @@ page_glob "$page" \
   mdfile="$(mdfile "$page")" || continue
   hglob="$(HTML "$glob")"
   refpfx="$(printf %s\\n "$hglob" |sed 's;[\;&\;];\\&;g')"
-  printf '<div class="macro include">
-            <a class="include link" href="%s">%s</a>
-            <article class="include" id="include_%s">' \
-         "${hglob}" "${hglob}" "${hglob}"
+  [ "$link" ] \
+  && printf '<div class="macro include">
+               <a class="include link" href="%s">%s</a>
+               <article class="include" id="include_%s">' \
+            "${hglob}" "${hglob}" "${hglob}" \
+  || printf '<div class="macro include">
+               <article class="include" id="include_%s">' \
+            "${hglob}"
   ( # PATH_INFO may be used by macros in the included page
     export PATH_INFO="$page"
     cd -- "${mdfile%/*}/"