Skip to content
Snippets Groups Projects
titlemd.py 4.86 KiB
Newer Older
  • Learn to ignore specific revisions
  • #!/usr/bin/env python3
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
    # -*- coding: utf-8 -*-
    
    # pylint: disable=C0301, R1710
    
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
    """ titlemd """
    
    import argparse
    import sys
    
    try:
        from titlecase import titlecase
    except ImportError:
        print("Please install titlecase")
    
    def arg_parse():
        """
    
        Argument parser
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
        """
        parser = argparse.ArgumentParser(
            description="Titlemd"
        )
        parser.add_argument('-t', '--test',
                            action='store_true',
                            help="test")
        parser.add_argument('location',
                            nargs='?',
                            default='.',
                            help="location, default current directory")
        return parser.parse_args()
    
    def mkdocs_available(location):
        """ Is mkdocs.yml available? """
    
        return "mkdocs.yml" in location
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
    
    def linestart(line, disabled, test, prev_line=None):
        """ linestart """
        if test:
            if (line.startswith("``") or line.startswith("extra:")) and not disabled:
                return True
    
            if (line.startswith("``") or (prev_line and prev_line.startswith("pages:"))) and disabled:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                return False
        else:
            if line.startswith("``") and not disabled:
                return True
            if line.startswith("``") and disabled:
                return False
        return disabled
    
    def testdata(arg):
        """ test """
        # Spelling exceptions
    
        with open('.spelling', encoding='utf-8') as fdata:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
            spelling = fdata.readlines()
    
    
        def abbreviations(word, **_):
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
            """ abbreviations """
    
            if word + "\n" in spelling:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                return word
    
        # Open the file and read the lines as a list
    
        with open(arg.location, encoding='utf-8') as fdata:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
            lines = fdata.readlines()
    
        # Loop through the list of lines and titlecase
        # any line beginning with '#'.
        return_value = 0
    
        prev_line = lines[0] if lines else ""
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
        echo_filename = False
        disabled = mkdocs_available(arg.location)
        for line in lines:
            disabled = linestart(line, disabled, arg.test, prev_line)
            if line.startswith('#') and not disabled and not mkdocs_available(arg.location):
    
                title_line = titlecase(line[:line.find("]")], callback=abbreviations) + line[line.find("]"):]
                if line != title_line:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                    if return_value == 0 and not echo_filename:
    
                        print(f"{arg.location}")
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                        echo_filename = True
    
                    print(f"-{line}", end="")
    
                    print(f"+{title_line}", end="")
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                    print()
                    return_value = 1
            if (line.startswith('---') or line.startswith('===')) and not disabled:
    
                title_prev_line = titlecase(prev_line[:prev_line.find("]")], callback=abbreviations) + prev_line[prev_line.find("]"):]
                if prev_line != title_prev_line:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                    if return_value == 0 and not echo_filename:
    
                        print(f"{arg.location}")
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                        echo_filename = True
    
                    print(f"-{prev_line}", end="")
    
                    print(f"+{title_prev_line}", end="")
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                    print()
                    return_value = 1
            if (mkdocs_available(arg.location) and not line.startswith('#') and not disabled):
    
                title_line = titlecase(line[:line.find(":")], callback=abbreviations) + line[line.find(":"):]
                if line != title_line:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                    if return_value == 0 and not echo_filename:
    
                        print(f"{arg.location}")
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                        echo_filename = True
    
                    print(f"-{line}", end="")
    
                    print(f"+{title_line}", end="")
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                    print()
                    return_value = 1
    
            prev_line = line
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
        return return_value
    
    def writedata(arg):
        """ writedata """
        # Spelling exceptions
    
        with open('.spelling', encoding='utf-8') as fdata:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
            spelling = fdata.readlines()
    
    
        def abbreviations(word, **_):
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
            """ abbreviations """
    
            if word + "\n" in spelling:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                return word
    
        # Open the file and read the lines as a list
    
        with open(arg.location, encoding='utf-8') as fdata:
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
            lines = fdata.readlines()
    
    
        with open(arg.location, 'w', encoding='utf-8') as fdata:
    
            prev_line = lines[0] if lines else ""
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
            disabled = False
            for line in lines:
                disabled = linestart(line, disabled, arg.test)
                if line.startswith('#') and not disabled:
    
                    line = titlecase(line[:line.find("]")], callback=abbreviations) + line[line.find("]"):]
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                if (line.startswith('---') or line.startswith('===')) and not disabled:
    
                    prev_line = titlecase(prev_line[:prev_line.find("]")], callback=abbreviations) + prev_line[prev_line.find("]"):]
    
    Lukáš Krupčík's avatar
    Lukáš Krupčík committed
                fdata.write(prev_line)
                prev_line = line
            fdata.write(prev_line)
    
    def main():
        """
        main function
        """
    
        arg = arg_parse()
    
        if arg.test:
            sys.exit(testdata(arg))
        else:
            writedata(arg)
    
    if __name__ == "__main__":
        main()