blob: 0eebd0c8d6b4daf4694ba101136a74c176e0e615 [file] [log] [blame]
% use JSON::XS;
% if (stash('search.query') && stash('test_port')) {
% my $action;
% if (param('action') && param('action') eq 'inspect') {
% $action = ' active" style="cursor: default';
% };
% state $json = JSON::XS->new->allow_blessed->pretty->canonical(1);
<pre class="query serial<%== $action // '' %>">
<span>JSON-LD Serialization for <%= param 'q' %> (<%= param 'ql' %>)</span>
<code>
<%= $json->encode(stash('search.query')) =%>
</code>
</pre>
%= javascript begin
hljs.initHighlightingOnLoad();
% unless ($action) {
$("pre.query.serial").on("click", function () {
$(this).toggleClass('active');
});
% };
% end
% };