mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-01-13 21:21:03 +00:00
Increase the number of code blocks backticks to 4 for the release note prefix and suffix, to allow users to embed their own code blocks using only 3 backticks.
13 lines
No EOL
175 B
Text
13 lines
No EOL
175 B
Text
## Foo
|
|
|
|
- Cool thing
|
|
|
|
```go
|
|
// Some code example
|
|
func IsPositive(number int) error {
|
|
if number < 0 {
|
|
return fmt.Errorf("number %d is negative", number)
|
|
}
|
|
return nil
|
|
}
|
|
``` |