We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b107c7f commit ed6457eCopy full SHA for ed6457e
make_release/notes/generate.nu
@@ -96,7 +96,9 @@ export def extract-notes []: string -> string {
96
| if ($in | is-empty) { assert false } else {}
97
| skip 1 # remove header
98
# extract until next heading
99
- | take until { $in starts-with "#" or $in starts-with "---" }
+ | take until {
100
+ $in starts-with "# " or $in starts-with "## " or $in starts-with "---"
101
+ }
102
| str join (char nl)
103
# remove HTML comments
104
| str replace -amr '<!--\O*?-->' ''
0 commit comments