Browse Source

Remove some formatting

Igor Demin 5 months ago
parent
commit
79128c0281
  1. 10
      tools/changelog.main.kts

10
tools/changelog.main.kts

@ -89,13 +89,13 @@ fun commitToVersion(commit: String) =
fun ChangelogEntry.format() = buildString { fun ChangelogEntry.format() = buildString {
append("- ") append("- ")
if (type == Type.Highlighted) append("**") // if (type == Type.Highlighted) append("**")
if (type == Type.PrereleaseFix) append("_(prerelease fix)_ ") if (type == Type.PrereleaseFix) append("_(prerelease fix)_ ")
append("[$title]($link)") append("[$title]($link)")
if (type == Type.Highlighted) append("**") // if (type == Type.Highlighted) append("**")
platforms.forEach { // platforms.forEach {
append(" <sub>$it</sub>") // append(" <sub>$it</sub>")
} // }
} }
/** /**

Loading…
Cancel
Save