blob: fa2243caa511baeb5c1beec3eba0ee56a0a95105 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/usr/bin/env python
import sys
def extract(out):
# Skip until the first line
while (1):
l = sys.stdin.readline()
if l == '':
return False
if l == '.. code-block:: VHDL\n':
break
# Write example
while (1):
l = sys.stdin.readline()
if l[0] == '\n':
out.write(l)
elif len(l) >= 2 and l[:2] == ' ':
out.write(l[2:])
else:
break
return True
for f in sys.argv[1:]:
print("Extracting {}...".format(f))
with open(f, "w") as out:
if not extract(out):
sys.exit(1)
sys.exit(0)
|