Fix summary handling
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 28 May 2016 16:59:10 +0000 (17:59 +0100)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 28 May 2016 16:59:10 +0000 (17:59 +0100)
lib/App/Web/Oof.pm
tmpl/details.html

index ba80d0e4fc6e049110f09f504a9b19ba8161b902..c3aeeb1883c5b07012a273a876da0a926bead690 100644 (file)
@@ -269,7 +269,8 @@ sub details_app {
        my $slug = make_slug $data{title};
        $tree->find('title')->replace_content("$data{title} | ledparts4you");
        $tree->find('h2')->replace_content($data{title});
-       $tree->fid('summary')->replace_content($data{summary});
+       my $summary_literal = HTML::Element::Library::super_literal $data{summary};
+       $tree->fid('summary')->replace_content($summary_literal);
        $tree->look_down(rel => 'canonical')->attr(href => "/details/$id/$slug");
        $tree->fid('pictures')->find('li')->iter3(\@pics, \&details_list_element);
        $tree->fid('jsonld')->replace_content(encode_json product_to_schemaorg '', %data);
index aa9b4cd3d20d6a698d18f065e243262ca342b0fd..85deb0a21d4323b9a2885333d061e520761457aa 100644 (file)
@@ -12,7 +12,7 @@
 
 <h2>Item</h2>
 <p>Go to <a href="/">order form</a>.
-<p id="summary"></p>
+<div id="summary"></div>
 <ul id="pictures"><li><a href="https://example.org"><img src="https:/example.org"></a></ul>
 
 Go to <a href="/">order form</a>.
This page took 0.014758 seconds and 4 git commands to generate.