QtRestClient  3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
doxme.py
1 #!/usr/bin/python
2 # $1 The readme to be transformed
3 # $pwd: dest dir
4 
5 import sys
6 import re
7 
8 def readFirst(line, out):
9  if line[0:2] != "# ":
10  raise ValueError("Expected first line to start with '# '")
11  # skip the first line
12  out.write("[TOC]\n\n")
13 
14 readCounter = 0
15 regexp = re.compile(r'\W')
16 skip = False
17 def readMore(line, out):
18  global skip
19  if skip:
20  if line[0:2] == "##":
21  skip = False
22  else:
23  return
24 
25  if line.strip() == "## Table of contents":
26  skip = True
27  elif line[0:2] == "##":
28  out.write(line[1:] + " {#" + regexp.sub('-', line.lstrip('#').strip()).lower() + "}\n")
29  else:
30  out.write(line + "\n")
31 
32 #read args
33 readme = sys.argv[1]
34 doxme = "./README.md"
35 
36 inFile = open(readme, "r")
37 outFile = open(doxme, "w")
38 
39 isFirst = True
40 for line in inFile:
41  if isFirst:
42  readFirst(line[:-1], outFile)
43  isFirst = False
44  else:
45  readMore(line[:-1], outFile)
46 
47 inFile.close();
48 outFile.close();