Skip to content

Instantly share code, notes, and snippets.

@douglasmiranda
Created December 5, 2024 01:38
Show Gist options
  • Save douglasmiranda/11e2515da2cd6b5812afd47662734466 to your computer and use it in GitHub Desktop.
Save douglasmiranda/11e2515da2cd6b5812afd47662734466 to your computer and use it in GitHub Desktop.
TinyMCE can break your searches

TinyMCE will convert accents to HTML entities like:

à becomes á

So you see the problem there, you search in your database for "á" or even "a" (in case you are using unaccent), and you get nothing.

In my case, I was using full text search in Postgres, using the dictionary portuguese_unaccent (custom dictionary check here).

So keep in mind you can always make TinyMCE not convert stuff:

tinymce.init({
  selector: 'textarea',  // change this value according to your HTML
  entity_encoding: 'raw'
});

https://www.tiny.cloud/docs/tinymce/latest/content-filtering/#example-using-entity_encoding

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment