fix(arty): render description as plain markdown, not blockquote
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1036,12 +1036,9 @@ generate_notes_md() {
|
||||
md+="# ${name}"$'\n\n'
|
||||
fi
|
||||
|
||||
# Description as blockquote
|
||||
# Description
|
||||
if [[ -n "$description" ]]; then
|
||||
while IFS= read -r line; do
|
||||
md+="> ${line}"$'\n'
|
||||
done <<< "$description"
|
||||
md+=$'\n'
|
||||
md+="${description}"$'\n\n'
|
||||
md+="---"$'\n\n'
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user