Remove the documentation of the deprecated `|encodeJSON` modifier
authorTim Düsterhus <duesterhus@woltlab.com>
Thu, 20 Jan 2022 11:28:59 +0000 (12:28 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Thu, 20 Jan 2022 11:28:59 +0000 (12:28 +0100)
This one really not not be used any longer. It's still available in the older
versions of the docs.

see WoltLab/WCF#4645

docs/view/template-plugins.md

index 34458520f5c0376987e86d9046d04ef015a8fd13..94f6e6c988f01d172dd59396fa78a47b69b5468b 100644 (file)
@@ -233,16 +233,6 @@ Please [check the implementation](https://github.com/WoltLab/WCF/blob/master/wcf
 ```
 
 
-## `encodeJSON`
-
-`encodeJSON` encodes a JSON string to be used as a single-quoted string in JavaScript by replacing `\\` with `\\\\`, `'` with `&#39;`, linebreaks with `\n`, and `/` with `\/`.
-Additionally, `htmlspecialchars` is applied to the string.
-
-```smarty
-'{@$foo|encodeJSON}'
-```
-
-
 ## `escapeCDATA`
 
 `escapeCDATA` encodes a string to be used in a `CDATA` element by replacing `]]>` with `]]]]><![CDATA[>`.