[
  {
    "section": "Content",
    "items": [
      {
        "title": "Text-only content — no image or file attachments",
        "status": "limitation",
        "body": "Bookmarks, notes, and prompts currently support text content only. You cannot upload or attach images, PDFs, or other files. Markdown image syntax (e.g., `![alt](url)`) works for referencing externally hosted images, but there is no built-in file hosting."
      }
    ]
  },
  {
    "section": "Editor",
    "items": [
      {
        "title": "Extra line break when continuing loose lists",
        "status": "expected-behavior",
        "body": "When a markdown list has blank lines between items (a \"loose\" or \"non-tight\" list), pressing Enter to add a new item will insert an extra blank line to match the existing style. This is the default behavior of the CodeMirror markdown editor — it preserves the spacing pattern of the list.\n\nFor example, if you have:\n\n```\n- [ ] First item\n                         ← blank line\n- [ ] Second item\n```\n\nPressing Enter after \"First item\" will add a new checkbox with a blank line above it, matching the loose list style. To avoid this, keep list items on consecutive lines without blank lines between them."
      },
      {
        "title": "Shift+Arrow selection gets stuck on wrapped lines",
        "status": "bug",
        "body": "When word wrap is enabled and a line wraps to multiple visual lines, using Shift+Down or Shift+Up to extend the selection can get stuck at the visual line boundary. Regular arrow keys (without Shift) are not affected.\n\n**Workaround:** Press Shift+Right to advance past the stuck point, then continue with Shift+Down. Alternatively, toggle word wrap off (Alt+Z) to avoid the issue."
      },
      {
        "title": "Toolbar flickers when interacting with Find & Replace checkboxes",
        "status": "bug",
        "body": "Clicking the checkboxes (e.g., \"match case\", \"regexp\") in the editor's Find & Replace panel can cause the formatting toolbar to briefly appear and disappear."
      }
    ]
  }
]
