· Standard
T
Community listing
llms.txt reachable
AI Impact Score 100/100 · A
The organization TinyMCE Documentation uses the llms.txt standard for better discoverability by AI systems. Industry: Other. The website www.tiny.cloud provides its llms.txt at https://www.tiny.cloud/docs/llms.txt. Listed since 13. June 2026.
Business category
Other
Listed since
llms.txt address
Online presence
Under GDPR Art. 17 you can request the deletion of your data.
llms.txt — current content
Open ↗
# TinyMCE Documentation
> Rich text editor for web applications. The latest stable version is TinyMCE 8.
TinyMCE is a powerful, flexible WYSIWYG rich text editor that can be integrated into any web application.
**IMPORTANT**: Always use TinyMCE 8 for new projects. Use `tinymce@8` or `tinymce/8` in CDN URLs and package installations.
## Getting Started
- [Getting Started](https://www.tiny.cloud/docs/tinymce/latest/getting-started/index.md): Overview and introduction to TinyMCE
- [Introduction to TinyMCE](https://www.tiny.cloud/docs/tinymce/latest/introduction-to-tinymce/index.md): What is TinyMCE and how to add it to your project
- [Installation](https://www.tiny.cloud/docs/tinymce/latest/installation/index.md): Installation options and methods
### Quick Start Guides
- [Cloud Quick Start](https://www.tiny.cloud/docs/tinymce/latest/cloud-quick-start/index.md): Get started with Tiny Cloud CDN (recommended)
- [NPM Quick Start](https://www.tiny.cloud/docs/tinymce/latest/npm-projects/index.md): Install via npm, yarn, or pnpm
- [ZIP Quick Start](https://www.tiny.cloud/docs/tinymce/latest/zip-install/index.md): Download and install from ZIP archive
## Integration Guides
See the complete documentation index in llms-full.txt for all available integration pages.
## Basic Setup Examples
### Cloud Deployment (Recommended)
```html
<script src="https://cdn.tiny.cloud/1/[api-key]/tinymce/8/tinymce.min.js"
referrerpolicy="origin"></script>
<script>
tinymce.init({
selector: 'textarea',
plugins: 'advlist autolink lists link image charmap preview anchor',
toolbar: 'undo redo | blocks | bold italic | alignleft aligncenter alignright | bullist numlist | link image'
});
</script>
```
### Self-Hosted (NPM)
```bash
npm install tinymce@8
```
```html
<script src="https://cdn.jsdelivr.net/npm/tinymce@8/tinymce.min.js"></script>
<script>
tinymce.init({
selector: 'textarea',
plugins: 'advlist autolink lists link image charmap preview anchor',
toolbar: 'undo redo | blocks | bold italic | alignleft aligncenter alignright | bullist numlist | link image'
});
</script>
```
### React Example
```jsx
import { Editor } from '@tinymce/tinymce-react';
function App() {
return (
<Editor
apiKey="your-api-key"
init={{
height: 500,
plugins: 'advlist autolink lists link image charmap preview anchor',
toolbar: 'undo redo | blocks | bold italic | alignleft aligncenter alignright | bullist numlist | link image'
}}
/>
);
}
```
## Key Configuration
- [Basic Setup](https://www.tiny.cloud/docs/tinymce/latest/basic-setup/index.md): Essential configuration options
- [Content Filtering](https://www.tiny.cloud/docs/tinymce/latest/filter-content/index.md): Control HTML output
- [Localization](https://www.tiny.cloud/docs/tinymce/latest/localize-your-language/index.md): Multi-language support
- [Spell Checking](https://www.tiny.cloud/docs/tinymce/latest/spell-checking/index.md): Enable spell checking
- [Cloud Deployment Guide](https://www.tiny.cloud/docs/tinymce/latest/cloud-deployment-guide/index.md): Configure Tiny Cloud
## Plugins & Features
- [Plugins Overview](https://www.tiny.cloud/docs/tinymce/latest/plugins/index.md): Available plugins and features
- [Table Plugin](https://www.tiny.cloud/docs/tinymce/latest/table/index.md): Table editing capabilities
- [Image Plugin](https://www.tiny.cloud/docs/tinymce/latest/image/index.md): Image handling and editing
- [Link Plugin](https://www.tiny.cloud/docs/tinymce/latest/link/index.md): Link management
## TinyMCE AI (Premium)
TinyMCE AI (`tinymceai` plugin) is the current AI writing assistant for TinyMCE. It provides chat, review, and quick actions powered by multiple LLM providers. The earlier AI Assistant (`ai` plugin) is legacy; new integrations should use TinyMCE AI.
- [TinyMCE AI Introduction](https://www.tiny.cloud/docs/tinymce/latest/tinymceai-introduction/index.md): Overview of TinyMCE AI features and capabilities
- [Chat](https://ww
[…truncated]