Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug #73: Markdown render while listing all issues of repository #86

Merged
merged 6 commits into from
Mar 30, 2023
1 change: 1 addition & 0 deletions github/lib/issuesListMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export async function issueListMessage({
await modify.getCreator().finish(textSender);
resData.forEach(async (issue) => {
if (typeof issue.pull_request === "undefined" && ind < 10) {
issue.title = issue.title.replace(/[\[\]()`]/g, "");
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM @kanishbodhwani thanks 🚀

const textSender = await modify
.getCreator()
.startMessage()
Expand Down