Publish full textContent 67f66f14
Bluesky is rolling out a feature for enhanced links that can estimate reading time on `site.standard.document`s based on `textContent`. We should publish the whole thing to support that.

Resolves #37
Heath Stewart · 2026-05-25 13:18 1 file(s) · +2 −2
packages/cli/src/lib/atproto.ts +2 −2
280 280
		title: post.frontmatter.title,
281 281
		site: config.publicationUri,
282 282
		path: postPath,
283 -
		textContent: textContent?.slice(0, 10000),
283 +
		textContent: textContent,
284 284
		publishedAt: publishDate.toISOString(),
285 285
		canonicalUrl: `${config.siteUrl}${postPath}`,
286 286
	};
367 367
		title: post.frontmatter.title,
368 368
		site: config.publicationUri,
369 369
		path: postPath,
370 -
		textContent: textContent?.slice(0, 10000),
370 +
		textContent: textContent,
371 371
		publishedAt: publishDate.toISOString(),
372 372
		canonicalUrl: `${config.siteUrl}${postPath}`,
373 373
	};