From 85c1c72db022bba891868afd3375e39dbe245701 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Wed, 20 Oct 2010 06:46:52 -0400 Subject: initial check-in of arduino docs in RST format (converted using wget+pandoc) --- flibbit.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 flibbit.py (limited to 'flibbit.py') diff --git a/flibbit.py b/flibbit.py new file mode 100644 index 0000000..5f149d4 --- /dev/null +++ b/flibbit.py @@ -0,0 +1,26 @@ +import os +import shutil +import re +from os.path import * + +src = '/Users/mbolivar/foo/arduino.cc/en/Reference' +dst = '/Users/mbolivar/hack/leaf/libmaple/docs/source/arduino' + +fs = [x for x in os.listdir(src) if x.endswith('.rst')] + +def process(line): + if re.match('-+$', line.rstrip()): + return '=' * (len(line) - 1) + '\n' + elif re.match('\^+$', line.rstrip()): + return '-' * (len(line) - 1) + '\n' + return line + +for f in fs: + print 'processing:', f + with open(join(src,f), 'r') as f_in: + with open(join(dst, basename(f)), 'w') as f_out: + label = '.. _arduino-%s:\n\n' % (f.split('.')[0]) + f_out.write(label) + for line in list(f_in.readlines())[20:-22]: + f_out.write(process(line)) + -- cgit v1.2.3