Beautiful, shareable, ready to send.
ChatGPT / Gemini
Here's a Python function that handles pagination efficiently:
def paginate(items, page=1, size=20): start = (page - 1) * size return items[start:start+size]Supports dark mode, code blocks, tables, inline formatting, and system instructions.
Add to Chrome