PHPackages                             philippoehrlein/typo-search-and-paste - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. philippoehrlein/typo-search-and-paste

ActiveKirby-plugin[Utility &amp; Helpers](/categories/utility)

philippoehrlein/typo-search-and-paste
=====================================

A Kirby plugin for searching and inserting special characters with multi-language support.

1.2.2(1mo ago)71.3kMITPHPPHP &gt;=8.1.0

Since May 4Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/philippoehrlein/typo-search-and-paste)[ Packagist](https://packagist.org/packages/philippoehrlein/typo-search-and-paste)[ Docs](https://github.com/philippoehrlein/typo-search-and-paste)[ RSS](/packages/philippoehrlein-typo-search-and-paste/feed)WikiDiscussions main Synced yesterday

READMEChangelog (9)Dependencies (6)Versions (11)Used By (0)

Typo, Search &amp; Paste
========================

[](#typo-search--paste)

[![License](https://camo.githubusercontent.com/f8df3091bbe1149f398a5369b2c39e896766f9f6efba3477c63e9b4aa940ef14/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e)](https://camo.githubusercontent.com/f8df3091bbe1149f398a5369b2c39e896766f9f6efba3477c63e9b4aa940ef14/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e)[![Version](https://camo.githubusercontent.com/8dfe0cdb067e7f06c4515e4849a4a37daa2830911a001f8e0e4d3e329aa174aa/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f76657273696f6e2d312e322e322d626c7565)](https://camo.githubusercontent.com/8dfe0cdb067e7f06c4515e4849a4a37daa2830911a001f8e0e4d3e329aa174aa/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f76657273696f6e2d312e322e322d626c7565)

A Kirby plugin that provides a searchable interface for special characters, built on top of [Typo &amp; Paste](https://github.com/philippoehrlein/typo-and-paste).

[![Cover Typo, Search & Paste](.github/typo-search-and-paste-cover.png)](.github/typo-search-and-paste-cover.png)

Features
--------

[](#features)

- Searchable database of special characters
- Multi-language support
- SQLite-based search engine
- Seamless integration with Typo &amp; Paste (v2.4.0+)
- Standalone functionality for Kirby 5

Installation
------------

[](#installation)

### Installation via Composer

[](#installation-via-composer)

```
composer require philippoehrlein/typo-search-and-paste
```

### Manual Installation

[](#manual-installation)

1. Download and extract the plugin
2. Copy the `typo-search-and-paste` folder into `/site/plugins/`

Configuration
-------------

[](#configuration)

### With Typo &amp; Paste (v2.4.0+)

[](#with-typo--paste-v240)

If you have [Typo &amp; Paste](https://github.com/philippoehrlein/typo-and-paste) v2.4.0 or higher installed, no additional configuration is needed. The search functionality will be automatically integrated.

### Panel Toolbar Button

[](#panel-toolbar-button)

In Kirby 5, you can add the Typo Search &amp; Paste button to your panel toolbar in two ways:

#### 1. In your blueprint:

[](#1-in-your-blueprint)

```
buttons:
  - typo-search-and-paste
  - preview
  - settings
  - languages
  - status
```

#### 2. Globally in your config:

[](#2-globally-in-your-config)

```
// site/config/config.php
return [
  'panel' => [
    'viewButtons' => [
      // Page view
      'page' => ['typo-search-and-paste', 'preview', 'settings', 'languages', 'status'],
      // Site view
      'site' => ['typo-search-and-paste', 'preview', 'languages']
    ]
  ]
];
```

Troubleshooting
---------------

[](#troubleshooting)

If you encounter FTS5-related errors on shared hosting environments, see [FTS5\_TROUBLESHOOTING.md](FTS5_TROUBLESHOOTING.md) for solutions and configuration options.

Contributing to the Character Database
--------------------------------------

[](#contributing-to-the-character-database)

The plugin uses SQLite databases for efficient character searching. You can contribute to the character database by following these steps:

1. Navigate to the `data/src` directory
2. Create or modify JSON files for your language (e.g., `en.json`, `de.json`)
3. Each JSON file should follow this structure:

```
{
  "characters": [
    {
      "value": "©",
      "name": "Copyright Sign",
      "aliases": ["copyright", "c"]
    }
  ]
}
```

4. Run the build script to update the database:

```
php data/src/build.php [options]
```

### Build Script Options

[](#build-script-options)

- `--lang`: Specify languages to build (comma-separated)

    ```
    php data/src/build.php --lang=en,de
    ```
- `--include`: Include specific categories

    ```
    php data/src/build.php --include=math,symbols
    ```
- `--exclude`: Exclude specific categories

    ```
    php data/src/build.php --exclude=math,symbols
    ```

Note: `--include` and `--exclude` cannot be used simultaneously. If both are provided, `--exclude` will be ignored.

License
-------

[](#license)

MIT License

###  Health Score

48

—

FairBetter than 93% of packages

Maintenance93

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~48 days

Recently: every ~30 days

Total

9

Last Release

36d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/101180105?v=4)[Philipp](/maintainers/philippoehrlein)[@philippoehrlein](https://github.com/philippoehrlein)

---

Top Contributors

[![philippoehrlein](https://avatars.githubusercontent.com/u/101180105?v=4)](https://github.com/philippoehrlein "philippoehrlein (17 commits)")

---

Tags

kirbykirby-cmskirby-pluginkirby4kirby5

### Embed Badge

![Health badge](/badges/philippoehrlein-typo-search-and-paste/health.svg)

```
[![Health](https://phpackages.com/badges/philippoehrlein-typo-search-and-paste/health.svg)](https://phpackages.com/packages/philippoehrlein-typo-search-and-paste)
```

###  Alternatives

[getkirby/cms

The Kirby core

1.5k584.8k472](/packages/getkirby-cms)[medienbaecker/kirby-modules

Easily add modules to your pages

895.5k1](/packages/medienbaecker-kirby-modules)[distantnative/retour-for-kirby

Manage redirects and track 404s right from the Kirby CMS Panel

14698.5k1](/packages/distantnative-retour-for-kirby)[arnoson/kirby-vite

Vite helper for Kirby CMS

9765.1k3](/packages/arnoson-kirby-vite)[bnomei/kirby3-dotenv

Kirby Plugin for environment variables from .env

4149.6k2](/packages/bnomei-kirby3-dotenv)[medienbaecker/kirby-alter

242.1k](/packages/medienbaecker-kirby-alter)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
