NAME

JSON::Formatter::Align - Formatting for JSON

SYNOPSIS

use JSON::Formatter::Align;

my $json = <<END;
{
    "glossary" : {
        "title" : "example glossary",
		"GlossDiv" : {
            "title" : "S",
			"GlossList" : {
                "GlossEntry" : {
                    "ID" : "SGML",
				    "SortAs" : "SGML",
				    "GlossTerm" : "Standard Generalized Markup Language",
				    "Acronym" : "SGML",
				    "Abbrev" : "ISO 8879:1986",
				    "GlossDef" : {
                        "para" : "A meta-markup language, used to create markup languages such as DocBook.",
					    "GlossSeeAlso" : ["GML", "XML"]
                	},
				    "GlossSee" : "markup"
               	}
            }
        }
    }
}
END

my $jsonFormatter = JSON::Formatter::Align->new();
print $jsonFormatter->json($json);

DESCRIPTION

Formatting for JSON. Look for the future versions of this package.

AUTHOR

Rajkumar Reddy

COPYRIGHT AND LICENSE

Copyright (C) 2022 by Rajkumar Reddy. All rights reserved.