We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the challenge name is pulled from the path
def update_or_create_challenge(path, folder=get_challenge_path()): # Get information category, name, _ = path.split("/", 2)
While fine for most names, it can generate issues and uncertainties with certain characters (the most obvious example being a \).
\
Instead it would be better to take the formal name from the challenge README (which also has the title)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the challenge name is pulled from the path
While fine for most names, it can generate issues and uncertainties with certain characters (the most obvious example being a
\
).Instead it would be better to take the formal name from the challenge README (which also has the title)
The text was updated successfully, but these errors were encountered: