docs: remove horizontal rules from READMEs [skip ci]

This commit is contained in:
vee1e 2026-06-02 14:01:31 +05:30
parent 3b1c8a80df
commit 13e119c425
No known key found for this signature in database
GPG key ID: EB498AFC60A7A01A
3 changed files with 0 additions and 26 deletions

View file

@ -2,8 +2,6 @@
FastAPI service that validates, parses, and stores XLSForm-compatible Excel files. Deployed on Render.
---
## Local Setup
```bash
@ -24,8 +22,6 @@ Swagger UI: http://localhost:8000/docs
| `DATABASE_NAME` | `mform_bulk_upload` | Database name |
| `FRONTEND_URL` | `*` | Allowed CORS origin(s), comma-separated |
---
## API Reference
### POST `/api/validate`
@ -79,8 +75,6 @@ Delete one form and all its questions and options.
### DELETE `/api/forms`
Delete all forms (bulk).
---
## File Format
Three sheets are required:
@ -124,8 +118,6 @@ Three sheets are required:
Choice questions (types 2, 3) must have matching Answer Options rows. Orphaned options (no matching question) are a validation error.
---
## Database Schema
**forms** `{ _id, title, language, version, created_at }`
@ -134,8 +126,6 @@ Choice questions (types 2, 3) must have matching Answer Options rows. Orphaned o
Indexes: `forms.created_at desc`, `questions.form_id`, `options.{form_id, order}`.
---
## Testing
```bash