# HG changeset patch # User HIROSE Yuuji # Date 1471917262 -32399 # Node ID 56c2d2df5b7b73421d280bc8dce607caa66b9285 # Parent 7f63a942441053fb73518e292df324ef20b618f5 minitbl() detection rule modified from /^|[^|]/ to /^|.*|/ diff -r 7f63a9424410 -r 56c2d2df5b7b s4-funcs.sh --- a/s4-funcs.sh Tue Aug 23 10:48:23 2016 +0859 +++ b/s4-funcs.sh Tue Aug 23 10:54:21 2016 +0859 @@ -459,7 +459,7 @@ } minitbl() { sed -n ' - /^|[^|]/ {; # If the line begin with "|" + /^|.*|/ {; # If the line begin with "|" and has 2 or more "|" s,|$,,; # Remove trailing "|" first s,|\* *\([^|]*\) *,\1,g; # "|*..." to "..." s,| *\([^|]*\) *,\1,g; # "|..." to "..."