mirror of
https://github.com/TrentSPalmer/hugo_themes_report.git
synced 2025-04-03 22:47:05 -07:00
handle hugolify-theme has theme.yml instead of theme.yaml or theme.toml
This commit is contained in:
parent
5895102451
commit
9b277737d6
@ -394,6 +394,8 @@ def get_repo_info_for_hugo_themes_from_gitlab():
|
||||
|
||||
|
||||
def get_theme_toml_file_name(theme_name):
|
||||
if theme_name == "hugolify/hugolify-theme":
|
||||
return "theme.yml"
|
||||
if theme_name in THEMESYAMLTHEMES:
|
||||
return "theme.yaml"
|
||||
else:
|
||||
@ -551,6 +553,8 @@ def parse_themes_toml_for_each_hugo_themes():
|
||||
theme_name = get_corrected_theme_name(theme.name)
|
||||
if theme_name in THEMESYAMLTHEMES:
|
||||
theme_toml = yaml.full_load(content)
|
||||
elif theme_name == "hugolify/hugolify-theme":
|
||||
theme_toml = yaml.full_load(content)
|
||||
else:
|
||||
theme_toml = toml.loads(match.sub(r'"\1"\n', content))
|
||||
if "tags" in theme_toml:
|
||||
|
Loading…
x
Reference in New Issue
Block a user