Continued to edit the labels obtained from John Grove.
  See Notes/014/
  
  Colorized page f1r using the herbal uniqueness color table:
  
    cat Notes/011/page-header.html \
      | sed -e 's/@PAGE@/'"f1r"'/g' \
      > f1r.html

    cat L16-eva/f1r.{P1,T1,P2,T2,P3,T3,P4,T4} \
      | grep ';F>' \
      | Notes/011/colorize-text -f Notes/011/word-equiv.gawk \
          -v colorTable=Notes/011/pat-to-color.tbl \
          -v default="000000" \
          -v missing="9900ff" \
          -v stripq=1 \
          -v equatekt=1 \
          -v equatepf=1 \
      >> f1r.html       
  
      cat Notes/011/page-trailer.html \
        >> f1r.html

  Tried to colorize the labels on a few pages:
  
    cat Notes/014/labtit-new.idx \
      | gawk -v FS='|' '($10 !~ /title/){print $7;}' \
      > .labs.eva
      
    cat .labs.eva \
      | tr '.=,-' '    ' \
      > .labs.sep
    cat .labs.eva \
      | tr -d '.=,-' \
      > .labs.joi

    cat .labs.sep .labs.joi \
      | tr ' ' '\012' \
      | sort | uniq \
      > .labs.dic
      
    cat .labs.dic \
      | gawk '/./{printf "%s ff3300\n", $0}' \
      > .labs.tbl
    
    cat Notes/011/page-header.html \
      | sed -e 's/@PAGE@/'"f1r"' with labels highligted/g' \
      > f1r.html

    cat L16-eva/f1r.{P1,T1,P2,T2,P3,T3,P4,T4} \
      | grep ';F>' \
      | Notes/011/colorize-text -f Notes/011/word-equiv.gawk \
          -v colorTable=.labs.tbl \
          -v default="000000" \
          -v missing="000000" \
          -v stripq=1 \
          -v equatekt=1 \
          -v equatepf=1 \
      >> f1r.html       
  
      cat Notes/011/page-trailer.html \
        >> f1r.html