···88## [Unreleased]
991010### Fixed
1111+- Docs: typing `- [ ] ` or `- [x] ` at the start of a paragraph now autoformats into a GFM task-list item with a checkbox — previously only the `- ` prefix triggered a plain bullet list and `[ ]` appeared as literal text (v0.62.18, #722). Added an InputRule in `src/docs/extensions/markdown-autoformat.ts` that replaces the current paragraph with a `taskList > taskItem > paragraph` node and sets `checked` based on `[x]` vs `[ ]`. (#722)
1212+- Docs: TipTap autolink no longer false-positives on `Y.Map`, `U.S.`, or other `word.word` patterns that aren't real URLs (v0.62.18, #721). Tightened the Link extension config in `src/docs/main.ts` to only autolink URLs starting with `http://`, `https://`, or `mailto:` via an explicit `validate` callback + `protocols: ['http', 'https', 'mailto']`. Manual link insertion via Cmd+K / toolbar remains unrestricted. (#721)
1113- Slides: thumbnail element-count badge no longer visually merges with the slide-number, so two slides with single elements used to read as "11"/"22" etc. (v0.62.17, #727). The thumbnail previously rendered `<span class="slides-thumb-num">{N}</span>` followed by a bare `<span class="slides-thumb-count">{M}</span>` inside the preview — with no separator they appeared flush together. Prefixed the count with a `▦` glyph + space and added `aria-label="{M} element(s)"` so screen readers hear "N elements" rather than the number alone. (#727)
1214- Slides: each click of "Add text" now offsets the new box by 20×N where N is the current element count on the slide, so repeated clicks don't stack boxes at the identical (100, 100) default position where the second would silently cover the first (v0.62.17, #728). (#728)
1315- Forms: Preview and Responses modes hide the "+ Add Question" button and the editable form-description textarea, leaving only the mode-switch bar so the author can toggle back (v0.62.17, #715). Before: Preview mixed builder controls with respondent UI, making it unclear what a real respondent would see. (#715)