How Do I get a Text Version of Results Pane?

As we all know, SD6 provides a great Results Pane.
Can I get a text version of it?

For example, I’d like a text version of this screen shot:
A HTML version complete with expand/collapse lines would be ideal, but I’d settle for simple plain text. XML and JSON would also be great.

This is needed for documentation and communication.

TIA.

Is there something about Source/Desc view that makes it inapplicable?

As Shane suggests, I would look at the source view with pretty print enabled. Its not interactive and not easily parsable, but it would show the structure of a record/list hierarchy.

When it comes of object references, source view won’t be much help as it will only show the source code describing the reference its self, not the referenced and expanded data structure.

Yep, I don’t find this very readable:

{{formatted_address:“Infinite Loop, Cupertino, CA 95014, USA”, partial_match:true, address_components:{{short_name:“Infinite Loop”, long_name:“Infinite Loop”, |types|:{“route”}}, {short_name:“Cupertino”, long_name:“Cupertino”, |types|:{“locality”, “political”}}, {short_name:“Santa Clara County”, long_name:“Santa Clara County”, |types|:{“administrative_area_level_2”, “political”}}, {short_name:“CA”, long_name:“California”, |types|:{“administrative_area_level_1”, “political”}}, {short_name:“US”, long_name:“United States”, |types|:{“country”, “political”}}, {short_name:“95014”, long_name:“95014”, |types|:{“postal_code”}}}, geometry:{location_type:“GEOMETRIC_CENTER”, viewport:{northeast:{lat:37.3335129, lng:-122.028577}, southwest:{lat:37.3305164, lng:-122.0321699}}, |bounds|:{northeast:{lat:37.3335129, lng:-122.028577}, southwest:{lat:37.3305164, lng:-122.0321699}}, location:{lat:37.3322109, lng:-122.0307778}}, place_id:“ChIJ-7m057a1j4AR2VBPVzJDemk”, |types|:{“route”}}}

I had no idea about “pretty print” – it’s not very obvious how to invoke it.
But this is much better:

{
	{
		formatted_address:"Infinite Loop, Cupertino, CA 95014, USA", 
		partial_match:true, 
		address_components:{
			{
				short_name:"Infinite Loop", 
				long_name:"Infinite Loop", 
				|types|:{
					"route"
				}
			}, 
			{
				short_name:"Cupertino", 
				long_name:"Cupertino", 
				|types|:{
					"locality", 
					"political"
				}
			}, 
			{
				short_name:"Santa Clara County", 
				long_name:"Santa Clara County", 
				|types|:{
					"administrative_area_level_2", 
					"political"
				}
			}, 
			{
				short_name:"CA", 
				long_name:"California", 
				|types|:{
					"administrative_area_level_1", 
					"political"
				}
			}, 
			{
				short_name:"US", 
				long_name:"United States", 
				|types|:{
					"country", 
					"political"
				}
			}, 
			{
				short_name:"95014", 
				long_name:"95014", 
				|types|:{
					"postal_code"
				}
			}
		}, 
		geometry:{
			location_type:"GEOMETRIC_CENTER", 
			viewport:{
				northeast:{
					lat:37.3335129, 
					lng:-122.028577
				}, 
				southwest:{
					lat:37.3305164, 
					lng:-122.0321699
				}
			}, 
			|bounds|:{
				northeast:{
					lat:37.3335129, 
					lng:-122.028577
				}, 
				southwest:{
					lat:37.3305164, 
					lng:-122.0321699
				}
			}, 
			location:{
				lat:37.3322109, 
				lng:-122.0307778
			}
		}, 
		place_id:"ChIJ-7m057a1j4AR2VBPVzJDemk", 
		|types|:{
			"route"
		}
	}
}