Skip to content

Fix title capitalization on comments.js#300

Open
Maddogghoek wants to merge 2 commits into
carbonplan:mainfrom
Maddogghoek:main
Open

Fix title capitalization on comments.js#300
Maddogghoek wants to merge 2 commits into
carbonplan:mainfrom
Maddogghoek:main

Conversation

@Maddogghoek

Copy link
Copy Markdown

fix for #285

script:

import re
import sys

_skipWords = {"re:", "the", "of", "on", "and", "to"}

def capitalize_word(word : str) -> str:
if "-" in word:
return capitalize_phrase(word, "-")
if word not in _skipWords and word.islower():
return word.title()
return word

def capitalize_phrase(title : str, delim : str) -> str:
return delim.join(map(capitalize_word, title.split(delim)))

def capitalize_titles(fileName : str):
inFile = open(fileName, "r")
outFile = open(fileName+".capitalized", "w")
while True:
line = inFile.readline()
if not line:
break
match1 = re.search("^ title: ([^,]+)", line)
match2 = re.search("^ title:$", line)
if(match1):
capitalized = capitalize_phrase(match1.group(1), " ")
outline = " title: " + capitalized + ",\n"
elif (match2):
outFile.write(" title:\n")
nextline = inFile.readline()
capitalized = capitalize_phrase(nextline, " ")
outline = capitalized
else:
outline = line
outFile.write(outline)
inFile.close()
outFile.close()

def main():
capitalize_titles(sys.argv[1])

if name=="main":
main()

fix for carbonplan#285

script:

import re
import sys

_skipWords = {"re:", "the", "of", "on", "and", "to"}

def capitalize_word(word : str) -> str:
    if "-" in word:
        return capitalize_phrase(word, "-")
    if word not in _skipWords and word.islower():
        return word.title()
    return word

def capitalize_phrase(title : str, delim : str) -> str:
  return delim.join(map(capitalize_word, title.split(delim)))

def capitalize_titles(fileName : str):
    inFile = open(fileName, "r")
    outFile = open(fileName+".capitalized", "w")
    while True:
        line = inFile.readline()
        if not line:
            break
        match1 = re.search("^    title: ([^,]+)", line)
        match2 = re.search("^    title:$", line)
        if(match1):
            capitalized = capitalize_phrase(match1.group(1), " ")
            outline = "    title: " + capitalized + ",\n"
        elif (match2):
            outFile.write("    title:\n")
            nextline = inFile.readline()
            capitalized = capitalize_phrase(nextline, " ")
            outline = capitalized
        else:
            outline = line
        outFile.write(outline)
    inFile.close()
    outFile.close()

def main():
    capitalize_titles(sys.argv[1])

if __name__=="__main__":
    main()
@vercel

vercel Bot commented Sep 23, 2024

Copy link
Copy Markdown

@Maddogghoek is attempting to deploy a commit to the carbonplan Team on Vercel.

A member of the Team first needs to authorize it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant