write-docs

द्वारा tldraw

tldraw के लिए SDK दस्तावेज़ीकरण लिखना। नए दस्तावेज़ीकरण लेख बनाते समय, मौजूदा दस्तावेज़ अपडेट करते समय, या दस्तावेज़ीकरण लेखन मार्गदर्शन की आवश्यकता होने पर उपयोग करें।…

npx skills add https://github.com/tldraw/tldraw --skill write-docs

Write documentation

This skill covers how to write and update tldraw SDK documentation.

Location

All documentation lives in apps/docs/content/. The main categories are:

DirectoryPurpose
docs/SDK documentation articles
releases/Release notes (see write-release-notes skill)
examples/Example documentation
getting-started/Quickstart and setup guides

Process

1. Understand the scope

Before writing:

  • Identify the target audience (new users, experienced developers, API reference)
  • Check existing docs that cover related topics
  • Look at relevant examples in apps/examples/
  • Read the API types and comments in the source code

2. Create the file

Create a new .mdx file in the appropriate directory with frontmatter:

---
title: Feature name
status: published
author: steveruizok
date: 3/22/2023
order: 1
keywords:
  - keyword1
  - keyword2
---

3. Write the content

Follow the structure:

  1. Overview — 1-2 paragraphs on what and why
  2. Basic usage — The simplest working example
  3. Details — Deeper explanation with more examples
  4. Edge cases — Advanced patterns, gotchas
  5. Links — Related docs and examples

4. Use MDX components

API links

Use [ClassName](?) or [ClassName#methodName](?) for API references:

The [Editor](?) class has many methods. Use [Editor#createShapes](?) to create shapes.

Code highlighting

Use <FocusLines> to highlight specific lines:

<FocusLines lines={[2,6,10]}>

\`\`\`tsx
import { Tldraw } from 'tldraw'
import { useSyncDemo } from '@tldraw/sync'
\`\`\`

</FocusLines>

Images

<Image
	src="/images/api/events.png"
	alt="A diagram showing an event being sent to the editor."
	title="Caption text here."
/>

Tables for API documentation

Use tables for listing methods, options, or properties:

| Method                   | Description                                    |
| ------------------------ | ---------------------------------------------- |
| [Editor#screenToPage](?) | Convert a point in screen space to page space. |
| [Editor#pageToScreen](?) | Convert a point in page space to screen space. |
| Value     | Description                                          |
| --------- | ---------------------------------------------------- |
| `default` | Sets the initial zoom to 100%.                       |
| `fit-x`   | The x axis will completely fill the viewport bounds. |

5. Verify

Check that:

  • Code examples actually work
  • API links resolve correctly
  • Images have alt text
  • Headings use sentence case
  • No AI tells (see style guide)

References

  • Style guide: See ../shared/docs-guide.md for voice, tone, and formatting conventions.

tldraw की और Skills

review-docs
tldraw
समानांतर मूल्यांकन और पुनरावृत्त सुधार लूप के साथ दस्तावेज़ीकरण की समीक्षा और सुधार करें।
official
clean-copy
tldraw
वर्तमान शाखा को एक नई शाखा पर स्वच्छ, कथात्मक-गुणवत्ता वाले गिट कमिट इतिहास के साथ पुनः कार्यान्वित करें। जब स्वच्छ कॉपी शाखा बनाने, कमिट साफ करने के लिए कहा जाए तो उपयोग करें।
official
commit-changes
tldraw
वर्तमान परिवर्तनों के लिए git कमिट बनाएँ। जब कमिट करने, कमिट बनाने, कमिट संदेश उत्पन्न करने, या वर्तमान वर्कट्री को कमिट करने के लिए कहा जाए तो उपयोग करें…
official
dotcom-release-crew
tldraw
पोस्ट करें
official
dotcom-release-marketing
tldraw
इस सप्ताह के tldraw.com (dotcom) रिलीज़ में जो कुछ भी शामिल है, उसका सरल भाषा में सारांश मार्केटिंग टीम के Discord चैनल पर पोस्ट करें। इसका उपयोग तब करें जब आप तैयारी कर रहे हों…
official
issue
tldraw
उपयोगकर्ता के विवरण से tldraw रिपॉजिटरी में GitHub issue बनाएँ और उस पर शोध करें। इसका उपयोग तब करें जब उपयोगकर्ता issue का उल्लेख करे, issue बनाने के लिए कहे, बग रिपोर्ट करे,…
official
pr
tldraw
वर्तमान शाखा के लिए tldraw रिपॉजिटरी में एक पुल रिक्वेस्ट बनाएँ या अपडेट करें। इसका उपयोग तब करें जब उपयोगकर्ता pr को आमंत्रित करे, PR बनाने, मौजूदा PR को अपडेट करने, पुश करने के लिए कहे…
official
pr-walkthrough
tldraw
एक पुल रिक्वेस्ट का वर्णित वीडियो वॉकथ्रू बनाएं जिसमें कोड स्लाइड्स और ऑडियो नैरेशन हो। इसका उपयोग तब करें जब PR वॉकथ्रू, PR वीडियो या वॉकथ्रू बनाने के लिए कहा जाए…
official