Skip to content
Snippets Groups Projects
titlemd_test.py 1.49 KiB
Newer Older
  • Learn to ignore specific revisions
  • #!/usr/bin/env python
    from __future__ import print_function
    
    import fnmatch
    import os
    import sys
    
    try:
      from titlecase import titlecase
    except ImportError:
      print("Please install titlecase")
    
    def main(location):
          # Open the file and read the lines as a list
          with open(location) as f:
              lines = f.readlines()
    
          # Loop through the list of lines and titlecase
          # any line beginning with '#'.
          return_value = 0
          prev_line = lines.pop(0)
          disabled = 0
          print(`location`)
          for line in lines:
              if line.startswith("``") and disabled == 0:
                  disabled = 1
              else:
                  if line.startswith("``") and disabled == 1:
                      disabled = 0
              if line.startswith('#') and disabled == 0:
                if line != titlecase(line):
                  print()
                  print("-"+line,end="") 
                  print("+"+titlecase(line[:(line.find("]"))])+line[(line.find("]")):],end="") 
                  return_value = 1
              if line.startswith('---') or line.startswith('==='):
                if prev_line != titlecase(prev_line):
                  print()
                  print("-"+prev_line,end="")
                  print("+"+titlecase(prev_line[:(prev_line.find("]"))])+prev_line[(prev_line.find("]")):],end="") 
                  return_value = 1
              prev_line = line
          if return_value == 0:
              print("==Ok==")
          exit(return_value)
    if __name__ == "__main__":
      try:
          main(sys.argv[1])
      except IndexError:
          main('.')