kr.motd.maven.sphinx.dist.CommonMark.utils.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sphinx-maven-plugin Show documentation
Show all versions of sphinx-maven-plugin Show documentation
Maven plugin that creates the site with Sphinx
def to_camel_case(snake_str):
components = snake_str.split('_')
return ''.join(x.title() for x in components)