Fixed some formating issues

This commit is contained in:
Florian Weber 2025-05-15 22:58:04 +02:00
parent 61d3bc4aba
commit 25707b7f89
Signed by: f.weber
GPG Key ID: B162B599E31221C6
3 changed files with 13 additions and 4 deletions

9
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false,
"yaml": true
}
}

View File

@ -1,6 +1,6 @@
# BookStack Helm Chart # BookStack Helm Chart
Deploys the BookStack wiki platform on Kubernetes with optional MariaDB and Redis subcharts. Deploys the BookStack wiki platform on Kubernetes with optional MariaDB and Redis sub-charts.
--- ---

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
""" """
generate_changelog.py Wandelt den ArtifactHubChangelog in Chart.yaml generate_changelog.py - Wandelt den Artifact Hub-Changelog in Chart.yaml
in eine MarkdownDatei (CHANGELOG.md) um. in eine Markdown-Datei (CHANGELOG.md) um.
Aufruf: Aufruf:
python generate_changelog.py # takes ./Chart.yaml python generate_changelog.py # takes ./Chart.yaml
@ -42,7 +42,7 @@ def render_markdown(chart: dict, changes: list[dict]) -> str:
version = chart.get("version", "Unversioniert") version = chart.get("version", "Unversioniert")
today = dt.date.today().isoformat() today = dt.date.today().isoformat()
heading = f"## {version} {today}\n" heading = f"## {version} - {today}\n"
bullets = [] bullets = []
for item in changes: for item in changes: