# HG changeset patch # User Kim Alvefur # Date 1624975614 -7200 # Node ID 7f2dee4249aaa841a185255a48541e5e4c1e1cf1 # Parent b03053ec6dcf11c69b9c4b526e4e9102062c7b39 util.stanza: Export pretty printing function diff -r b03053ec6dcf -r 7f2dee4249aa teal-src/util/stanza.d.tl --- a/teal-src/util/stanza.d.tl Tue Jun 29 16:05:35 2021 +0200 +++ b/teal-src/util/stanza.d.tl Tue Jun 29 16:06:54 2021 +0200 @@ -56,6 +56,7 @@ error_reply : function ( stanza_t, string, string, string, string ) presence : function ( { string : string } ) : stanza_t xml_escape : function ( string ) : string + pretty_print : function ( string ) : string end return lib diff -r b03053ec6dcf -r 7f2dee4249aa util/stanza.lua --- a/util/stanza.lua Tue Jun 29 16:05:35 2021 +0200 +++ b/util/stanza.lua Tue Jun 29 16:06:54 2021 +0200 @@ -488,6 +488,7 @@ return new_stanza("presence", attr); end +local pretty; if do_pretty_printing then local getstyle, getstring = termcolours.getstyle, termcolours.getstring; @@ -512,7 +513,7 @@ getstring(green1, "%3") -- ; ); - local function pretty(s) + function pretty(s) -- Tag soup color -- Outer gsub call takes each , applies colour to the brackets, the -- tag name, then applies one inner gsub call to colour the attributes and @@ -581,4 +582,5 @@ error_reply = error_reply; presence = presence; xml_escape = xml_escape; + pretty_print = pretty; };