Bulleted List Blocks¶
Bulleted lists organize information in unordered, scannable format. Ideal for features, benefits, or requirements.
Basic Syntax¶
Quick Examples¶
## Resources
- [Documentation](https://docs.example.com)
- [GitHub Repo](https://github.com/example/repo)
Nested Lists¶
## Project Structure
- Frontend
- React components
- CSS styles
- Backend
- API routes
- Database models
Mixed Content¶
## API Endpoints
- `GET /api/users` – List users
- `POST /api/users` – Create user
- `PUT /api/users/{id}` – Update user
Programmatic Usage¶
Using MarkdownBuilder¶
from notionary import MarkdownBuilder
builder = (MarkdownBuilder()
.h2("Core Features")
.bulleted_list([
"Real-time collaboration",
"Advanced analytics",
"Custom integrations"
])
.h2("Resources")
.bulleted_list([
"[Docs](https://docs.example.com)",
"[GitHub](https://github.com/example/repo)"
])
)
print(builder.build())