]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
better display for txt
authorThomas Citharel <tcit@tcit.fr>
Mon, 25 Jan 2016 21:02:44 +0000 (22:02 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 4 Feb 2016 19:31:26 +0000 (20:31 +0100)
src/Wallabag/CoreBundle/Helper/EntriesExport.php
src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig

index 79fe6eaadc8f6eff7b4e5a5b9f4064f88e90b6cb..6e06086fcf93f56fc80fa08db8dc5f149f5894f6 100644 (file)
@@ -366,8 +366,8 @@ class EntriesExport
     {
         $content = '';
         foreach ($this->entries as $entry) {
-            $content .= $entry->getTitle();
-            $content .= strip_tags($entry->getContent());
+            $content .= "\n\n" . str_repeat("=",100) . "\n\n" . $entry->getTitle() . "\n\n" . str_repeat("=",100) . "\n\n";
+            $content .= trim(preg_replace('/\s+/S', ' ', strip_tags($entry->getContent()))) . "\n\n";
         }
         return Response::create(
             $content,
index 8ad24fbf8d9a2007c459194d27a1066e9e0bed3d..e9925e3d60999096dad2d15b4fc917ba4b264f01 100644 (file)
             {% if craue_setting('export_xml') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'xml' }) }}">{% trans %}XML{% endtrans %}</a></li>{% endif %}
             {% if craue_setting('export_csv') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'json' }) }}">{% trans %}JSON{% endtrans %}</a></li>{% endif %}
             {% if craue_setting('export_json') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'csv' }) }}">{% trans %}CSV{% endtrans %}</a></li>{% endif %}
-            {% if craue_setting('export_txt') %}<li class="bold"><del><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'txt' }) }}">{% trans %}TXT{% endtrans %}</a></del></li>{% endif %}
+            {% if craue_setting('export_txt') %}<li class="bold"><a class="waves-effect" href="{{ path('export_entries', { 'category': currentRoute, 'format': 'txt' }) }}">{% trans %}TXT{% endtrans %}</a></li>{% endif %}
         </ul>
     </div>