-
Notifications
You must be signed in to change notification settings - Fork 9
Update Onboarding for new NGOs.md #524
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
base: main
Are you sure you want to change the base?
Conversation
changed the form link and image.
WalkthroughUpdates the WhatsApp Groups Automation onboarding document: replaces a plain "Beginner" badge with an HTML metadata header (read time, level, last updated), adds a blank line after the "Set-up" heading, and simplifies Step 2 to reference an onboarding form link and external documentation instead of listing App Name/API key fields. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🔇 Additional comments (3)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
🚀 Deployed on https://deploy-preview-524--glific-docs.netlify.app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md(3 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.18.1)
docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md
35-35: Spaces inside link text
(MD039, no-space-in-links)
🔇 Additional comments (1)
docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md (1)
20-21: Visual separation improvement.The blank line after the heading improves document readability.
| <h4> | ||
| <table> | ||
| <tr> | ||
| <td><b>5 minutes read</b></td> | ||
| <td style={{ paddingLeft: '40px' }}><b>Level: Beginner</b></td> | ||
| <td style={{ paddingLeft: '40px' }}><b>Last Updated: December 2025</b></td> | ||
| </tr> | ||
| </table> | ||
| </h4> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replace JSX syntax with standard HTML style attributes.
Lines 5 and 6 use JSX object notation (style={{ paddingLeft: '40px' }}), which is not valid in markdown files. This will render as literal text instead of applying the intended styling. Use standard HTML syntax instead.
Apply this diff to fix the inline styles:
<h4>
<table>
<tr>
<td><b>5 minutes read</b></td>
- <td style={{ paddingLeft: '40px' }}><b>Level: Beginner</b></td>
- <td style={{ paddingLeft: '40px' }}><b>Last Updated: December 2025</b></td>
+ <td style="padding-left: 40px;"><b>Level: Beginner</b></td>
+ <td style="padding-left: 40px;"><b>Last Updated: December 2025</b></td>
</tr>
</table>
</h4>📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| <h4> | |
| <table> | |
| <tr> | |
| <td><b>5 minutes read</b></td> | |
| <td style={{ paddingLeft: '40px' }}><b>Level: Beginner</b></td> | |
| <td style={{ paddingLeft: '40px' }}><b>Last Updated: December 2025</b></td> | |
| </tr> | |
| </table> | |
| </h4> | |
| <h4> | |
| <table> | |
| <tr> | |
| <td><b>5 minutes read</b></td> | |
| <td style="padding-left: 40px;"><b>Level: Beginner</b></td> | |
| <td style="padding-left: 40px;"><b>Last Updated: December 2025</b></td> | |
| </tr> | |
| </table> | |
| </h4> |
🤖 Prompt for AI Agents
In docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md around lines 1
to 9, the table cells use JSX-style inline styles (style={{ paddingLeft: '40px'
}}) which is invalid in Markdown/HTML; replace those with standard HTML
attributes using CSS syntax (e.g., style="padding-left: 40px;") on the <td>
elements so the padding is applied correctly and the JSX braces and double
braces are removed.
tanuprasad530
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra character in the word "documentation" that directs to the link. This can cause the hyperlink viewing to fail.
Please delete the extra character.
removed the extra space
changed the form link and image.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.