mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
fix(changelog): fix highlight of codeblocks in subject
This commit is contained in:
parent
1aa2b18e29
commit
4f8964d8ff
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ function display-release {
|
||||||
case "$output" in
|
case "$output" in
|
||||||
raw) printf "$subject" ;;
|
raw) printf "$subject" ;;
|
||||||
# In text mode, highlight (#<issue>) and dim text between `backticks`
|
# In text mode, highlight (#<issue>) and dim text between `backticks`
|
||||||
text) sed -E $'s|#([0-9]+)|\e[32m#\\1\e[0m|g;s|`(.+)`|`\e[2m\\1\e[0m`|g' <<< "$subject" ;;
|
text) sed -E $'s|#([0-9]+)|\e[32m#\\1\e[0m|g;s|`([^`]+)`|`\e[2m\\1\e[0m`|g' <<< "$subject" ;;
|
||||||
# In markdown mode, link to (#<issue>) issues
|
# In markdown mode, link to (#<issue>) issues
|
||||||
md) sed -E 's|#([0-9]+)|[#\1](https://github.com/ohmyzsh/ohmyzsh/issues/\1)|g' <<< "$subject" ;;
|
md) sed -E 's|#([0-9]+)|[#\1](https://github.com/ohmyzsh/ohmyzsh/issues/\1)|g' <<< "$subject" ;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue