aboutsummaryrefslogtreecommitdiff
path: root/convert.awk
diff options
context:
space:
mode:
Diffstat (limited to 'convert.awk')
-rw-r--r--convert.awk15
1 files changed, 9 insertions, 6 deletions
diff --git a/convert.awk b/convert.awk
index e2248b2..4eccdbf 100644
--- a/convert.awk
+++ b/convert.awk
@@ -2,11 +2,14 @@ BEGIN {
line=0;
}
-NR > 47 {
- line++;
- print
+NR < 61 { next }
+
+# Page numbers
+/^ *[0-9][0-9]* *$/ { next }
-# if (line < 40) {
-# break
-# }
+# Page headers
+/^ *Constance Ring *$/ { next }
+
+{
+ print
}