ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

xml​2json

by vontio ALL

xml to json and json to xml convert

Details

Installs

  • Total 46K
  • Win 25K
  • Mac 15K
  • Linux 6K
Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25
Windows 1 2 4 4 1 0 5 2 0 3 2 2 0 0 1 1 3 5 4 1 1 4 3 0 3 5 0 0 5 7 1 4 0 2 1 2 6 3 4 3 0 0 3 2 3 4
Mac 1 5 1 3 0 1 0 2 0 1 1 1 0 0 0 1 1 2 0 1 1 1 3 0 0 2 1 3 2 2 5 0 1 2 0 1 2 4 2 0 0 1 0 2 2 4
Linux 0 1 0 1 0 0 0 0 2 0 0 1 0 0 0 0 1 0 0 0 0 0 0 2 1 1 0 1 2 0 2 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime xml to json and json to xml

convert xml file to json file or json file to xml file.

Installation:

  • you should use sublime package manager
  • use cmd+shift+P then Package Control: Install Package
  • look for xml2json and install it.
  • OR, Clone or unpack to “xml2json” folder inside “Packages” of your Sublime installation.

Usage :

  • use cmd+shift+P then xml2json or json2xml (opens result in a new unsaved buffer)
  • use cmd+shift+P then xml2json (Save to file) or json2xml (Save to file) to save next to the source file (e.g. abc.xml -> abc.json, abc.json -> abc.xml); if the target exists you will be asked whether to overwrite, and choosing not to overwrite leaves the result in an unsaved buffer
  • use cmd+shift+P then Pretty JSON, Pretty XML, Compact JSON, or Compact XML to format the current buffer without saving
  • or goto menubar Tools then xml2json
  • or bind some key in your user key binding:
{
     "keys": ["ctrl+alt+shift+j"],
     "command": "xml2json"
    },
    {
     "keys": ["ctrl+alt+shift+l"],
     "command": "json2xml"
    }

Settings

  • empty_tag_style: how empty tags are written when generating XML. compact (<tag/>, default), spaced (<tag />), expanded (<tag></tag>).
  • pretty_json_indent: indentation size for pretty JSON (default 2).
  • pretty_xml_indent: indentation size for pretty XML (default 2).
  • default_conversion_pretty: whether conversion commands default to pretty (true/"pretty") or compact (false/"compact"); default true.
  • json_ensure_ascii: whether to escape non-ASCII when emitting JSON (default false).
  • json_sort_keys: whether to sort keys when emitting JSON (default false).
  • normalize_attribute_text_pairs: when converting XML to JSON, convert simple attribute/text pairs (e.g., {"@name": "...", "#text": "..."}) into {name: "...", value: "..."} (default true).
  • attribute_text_value_key: key name to store text content when normalize_attribute_text_pairs is enabled (default "value").
  • default_xml_root_name: fallback root element name when wrapping JSON that lacks a single root (default "root").
  • include_xml_declaration: include <?xml version="1.0" encoding="utf-8"?> when converting JSON to XML (default true).
  • line_ending: line endings for generated output: auto (preserve from source), unix (\n), windows (\r\n), mac (\r) (default auto).
  • ensure_final_newline: ensure generated output ends with a newline (default true).
  • trim_trailing_whitespace: trim trailing spaces/tabs on generated lines (default true; removes spaces after commas in pretty JSON).