Remove hack previously used to insert diags into generated HTML.
[gnushogi.git] / doc / make_fig2
diff --git a/doc/make_fig2 b/doc/make_fig2
deleted file mode 100755 (executable)
index 94e867c..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#! /usr/bin/env python
-
-import sys, re
-
-key = "three-mover.  Here is a really trivial three-mover:"
-
-replace = """
-three-mover.  Here is a really trivial three-mover:
-<P>
-<PRE>
-
-   3    2    1            
-----------------+         
- |    |    |    |  a         
-----------------+           
- |    |    | wK |  b         
-----------------+           
- |    |    |    |  c       
-----------------+         
- | bN |    |    |  d       
-----------------+         
- |    |    |    |  e       
-----------------+         
- |    | bN |    |  f       
-----------------+
-
-Black in hand: S, G
-
-</PRE>
-"""
-
-#
-# Insert the figure directly into the html file.
-#
-
-done = 0
-
-while 1:
-    line = sys.stdin.readline()
-    if not line:
-        break
-    
-    if not done:
-        match = re.match(key, line)
-        if match:
-            print replace,
-            done = 1
-        else:
-            print line,
-    else:
-        print line,
-
-