X-Git-Url: https://git.plutz.net/?a=blobdiff_plain;f=tools.sh;h=dfa4594576d9538105afbdc7a2c9eabdded5ec92;hb=dabd1e749abc0fc1fc446e337c3d2a3e8de22c25;hp=a298394c9cf5881cb4a764587302fe4467030d67;hpb=fed4d5f078dbbb6c730ddd7ab8c0157afb460fe1;p=shellwiki diff --git a/tools.sh b/tools.sh index a298394..dfa4594 100755 --- a/tools.sh +++ b/tools.sh @@ -185,3 +185,27 @@ has_tag() { done return 1 } + +page_title() { + local mdfile PAGE_TITLE + + if mdfile="$(mdfile "${1:-${PATH_INFO%/*}}")"; then + PAGE_TITLE="$( + sed -nE ' + s;^%title[ \t]+([[:graph:]][[:print:]]+)\r?$;\1;p; tQ; + b; :Q q; + ' "$mdfile" + )" + [ ! "${PAGE_TITLE}" ] && PAGE_TITLE="$( + MD_MACROS="" md <"$mdfile" \ + | sed -nE ' + s;^.*]*>(.*>)?([^<]+)(<.*)?.*$;\2;p; tQ; + s;^.*]*>(.*>)?([^<]+)(<.*)?.*$;\2;p; tQ; + b; :Q q; + ' + )" + printf %s\\n "$PAGE_TITLE" + else + return 1 + fi +}