Added EncodeHtmlEntities, EncodeQp, Rot13 and Year

This commit is contained in:
Erik C. Thauvin 2023-03-13 23:53:30 -07:00
parent a224733077
commit 070fbda221
6 changed files with 294 additions and 0 deletions

View file

@ -11,12 +11,16 @@ This project provides a set of template renderers.
- Encodes a template value to HTML.
- **rife.render.EncodeJson**
- Encodes a template value to JSON.
- **rife.render.EncodeQp**
- Converts a template value to a quoted-printable string.
- **rife.render.EncodeUrl**
- URL-encodes a template value.
- **rife.render.EncodeXml**
- Encodes a template value to XML.
- **rife.render.Lowercase**
- Converts a template value to lowercase.
- **rife.render.Rot13**
- Translates a template value to/from ROT13.
- **rife.render.SwapCase**
- Swap case of a template value.
- **rife.render.Trim**
@ -25,6 +29,8 @@ This project provides a set of template renderers.
- Un-capitalizes a template value.
- **rife.render.Uppercase**
- Convert a template value to uppercase.
- **rife.render.Year**
- Renders the current year.
## Usage in Templates