Back in the xsl(t) days.... if you did an "xml to xml" transformation, you could do a "copy *star dot *star" (copy everything "as is").. thing with an xsl template (probably) like the below.
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
Is there any kind of liquid short-syntax that would do this for a JSON to JSON transformation?
I have internet-searched ... but the search phrases are very ambiguous.
Things I found (but are incomplete a far as answers as far as I can tell).
Just passing the entire object shoule work, like
{{content}}
. There's a working example in this SO answer.