- JSON Escape Unescape
- Escapes or unescapes a JSON string by replacing special characters forward slashes and line terminators.
- 368 Installs
Readme
JSON Escape Unescape provides a way to escape and unescape a JSON document.
Usage
To run JSON Escape Unescape:
- Select the Editor → JSON Escape Unescape menu item; or
- Open the command palette and type one of the following commands:
JSON Escape
to escape the contents of the current documentJSON Unescape
to unescape the contents of the current document
JSON Escape
Escaping JSON converts a json object into a string by replacing all occurrences of a forward slash /
. In addition, the process also removes line and paragraph breaks.
JSON Unescape
Unescape converts a string value into a JSON object by attempting to parse it.
Changelog
Version 1.0
Initial release
License
Copyright (c) 2021 Konstantin Kostov, https://iamkonstantin.eu All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
(1) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
(3)The name of the author may not be used to
endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.