{# canonical_base is the OWNING tenant's origin: all 16 Peasy domains serve the same catalogue, so a page rendered by a non-owner points its canonical at the owner instead of competing with it. Falls back to this site for static/self-owned pages. #}
🍋
Menu
Text

Rich Text

Rich Text Format

A text format that supports formatting such as bold, italics, fonts, and colors across different applications.

Teknik Detay

Rich Text bridges the gap between plain text and fully formatted documents. Unlike binary formats (DOCX, PDF), text-based markup is human-readable and version-control friendly. Markdown's success comes from its minimal syntax: # for headings, ** for bold, - for lists. CommonMark standardized the ambiguous parts of original Markdown, while extensions like GFM (GitHub Flavored Markdown) add tables, task lists, and syntax highlighting.

Ornek

```javascript
// Rich Text: text processing example
const input = 'Sample text for processing';
const result = input
  .trim()
  .split(/\s+/)
  .filter(Boolean);
console.log(result); // ['Sample', 'text', 'for', 'processing']
```

Ilgili Araclar

Ilgili Terimler