X-Git-Url: https://git.plutz.net/?a=blobdiff_plain;f=tools.sh;h=dfa4594576d9538105afbdc7a2c9eabdded5ec92;hb=680b00bd982c2625fab69c45728c653ebd1c0bf0;hp=a298394c9cf5881cb4a764587302fe4467030d67;hpb=19eaa527e1d445b30d7ba4d23430d22cd882d9c6;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 +}