File tree Expand file tree Collapse file tree
.github/workflows/scripts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ for file in $(find bin dist docs tools etc examples lib test tools -type f); do
3434 fi
3535 lineNumber=$( echo $fixme | cut -d " :" -f 1)
3636 lineContent=$( awk " NR==$lineNumber " $file )
37+ lineContent=$( echo $lineContent | sed -e ' s/<!--/\\<!--/g' -e ' s/-->/\\-->/g' )
3738 comment=" $comment
3839- [$file #L$lineNumber ](https://github.com/stdlib-js/stdlib/blob/develop/$file #L$lineNumber ): $lineContent "
3940 fi
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ for file in $(find bin dist docs tools etc examples lib test tools -type f); do
3434 fi
3535 lineNumber=$( echo $todo | cut -d " :" -f 1)
3636 lineContent=$( awk " NR==$lineNumber " $file )
37+ lineContent=$( echo $lineContent | sed -e ' s/<!--/\\<!--/g' -e ' s/-->/\\-->/g' )
3738 comment=" $comment
3839- [$file #L$lineNumber ](https://github.com/stdlib-js/stdlib/blob/develop/$file #L$lineNumber ): $lineContent "
3940 fi
You can’t perform that action at this time.
0 commit comments