← Zurück zum Verzeichnis
Community-Eintrag Dieser Eintrag basiert auf öffentlich verfügbaren Quellen und wurde nicht vom Inhaber erstellt. Ist das deine Website?
Kostenlos übernehmen
· Standard Standard-Status
llmstxt.info Verzeichnis · Standard Featured

TinyMCE Documentation

www.tiny.cloud ↗
Community-Eintrag llms.txt erreichbar KI-Impact-Score 100/100 · A

Die Organisation TinyMCE Documentation nutzt den llms.txt-Standard für eine bessere Auffindbarkeit durch KI-Systeme. Branche: Sonstiges. Die Website www.tiny.cloud stellt ihre llms.txt unter https://www.tiny.cloud/docs/llms.txt bereit. Der Eintrag besteht seit 13. June 2026.

Geschäftskategorie
Sonstiges
Eingetragen seit
Online-Präsenz
Gemäß DSGVO Art. 17 kannst du die Löschung deiner Daten beantragen.
llms.txt — Aktueller Inhalt Öffnen ↗
# 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 […gekürzt]