Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions docs/6. WhatsApp Groups Automation/Onboarding for new NGOs.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
### **5 minute read                                                                                                                         `Beginner`**

<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>
Comment on lines +1 to +9
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

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.

Suggested change
<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.

### Contents
1. [Pre-requisites](#pre-requisites)
2. [Set-up](#set-up)
Expand All @@ -11,6 +18,7 @@


### Set-up

#### Step 1: Linking phone number to Maytapi account


Expand All @@ -23,12 +31,9 @@


#### Step 2: Filling the Glific onboarding form
1. Fill the Glific [onboarding form](https://prod.glific.com/organization-registration).
- For "App Name" and "Gupshup API key" fill the following details respectively
- App name: 2023OBF1
- Gupshup API key: 9imaygevg6fuwa82s54hbuyoiuuohmug
- Follow the rest of the onboarding form documentation [here](https://glific.github.io/docs/docs/Pre%20Onboarding/Onboarding%20Form%20Fill%20Up)
<img width="824" alt="Screenshot 2024-11-18 at 3 35 30 PM" src="https://github.com/user-attachments/assets/68ddcd1b-8872-4b92-b2ba-e0074d602f6e" />

1. You will receive the Onboarding Form link from the Glific Team. You can refer to this [documentation](https://glific.github.io/docs/docs/Pre%20Onboarding/Onboarding%20Form%20Fill%20Up) to learn more about this.

2. After completion of this step, Glific team will share the platform url, along with the log-in credentials.


Expand Down