File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -305,11 +305,13 @@ EOF
305305 # Add commits for this issue - use zsh-compatible approach
306306 local commits_for_issue= " ${issue_commits[$issue_num]} "
307307
308+ echo ' ```' >> " $output_file "
308309 while IFS= read -r commit; do
309310 if [[ -n " $commit " ]]; then
310- echo " - $commit " >> " $output_file "
311+ echo " $commit " >> " $output_file "
311312 fi
312313 done <<< " $commits_for_issue "
314+ echo ' ```' >> " $output_file "
313315 echo " " >> " $output_file "
314316 done
315317 fi
@@ -318,11 +320,13 @@ EOF
318320 if [[ ${# other_commits[@]} -gt 0 ]]; then
319321 echo " ## Other Commits" >> " $output_file "
320322 echo " " >> " $output_file "
323+ echo ' ```' >> " $output_file "
321324 for commit in " ${other_commits[@]} " ; do
322325 if [[ -n " $commit " ]]; then
323- echo " - $commit " >> " $output_file "
326+ echo " $commit " >> " $output_file "
324327 fi
325328 done
329+ echo ' ```' >> " $output_file "
326330 echo " " >> " $output_file "
327331 fi
328332
You can’t perform that action at this time.
0 commit comments