escape
by Dickson Law
Common character escapes (backslashing, JSON, XML, URL-encoding, regex)
A simple Espanso package for encoding and decoding various common escape formats in programming (JSON, XML, URL-encoding, regular expressions)
espanso install escape
All encoding triggers start with >>
| Trigger | Conversion |
|---|---|
>>json | Text -> JSON/backslash |
>>xml | Text -> XML |
>>url | Text -> URL encoding |
>>regex | Text -> Regular expression literal |
All decoding triggers start with <<
| Trigger | Conversion |
|---|---|
<<json | JSON/backslash -> Text |
<<xml | XML -> Text |
<<url | URL encoding -> Text |