PageRenderTime 43ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/Sphinx4-1.0beta6/models/language/wsj/prep.awk

#
AWK | 9 lines | 8 code | 1 blank | 0 comment | 0 complexity | 8cede8dff5c18124db9a6175941f776c MD5 | raw file
Possible License(s): Apache-2.0, CC-BY-SA-3.0, BSD-3-Clause, LGPL-2.0, BSD-3-Clause-No-Nuclear-License-2014
  1. {
  2. gsub(/<s[0-9\.\-]+>/, "<s>");
  3. gsub(/<p[0-9\.\-]+>/, "");
  4. gsub(/<\/p>/, "");
  5. if (length($0) > 0) {
  6. print;
  7. }
  8. }