@@ -439,9 +439,12 @@ def transform_content(self, content, post_format):
439
439
content = self .transform_caption (content )
440
440
content = self .transform_multiple_newlines (content )
441
441
return content , 'md'
442
- else :
443
- # FIXME ???
442
+ elif post_format == 'markdown' :
444
443
return content , 'md'
444
+ elif post_format == 'none' :
445
+ return content , 'html'
446
+ else :
447
+ return None
445
448
446
449
def _create_metadata (self , status , excerpt , tags , categories ):
447
450
other_meta = {'wp-status' : status }
@@ -547,6 +550,8 @@ def import_item(self, item, wordpress_namespace, out_folder=None):
547
550
format_tag = [x for x in item .findall ('*//{%s}meta_key' % wordpress_namespace ) if x .text == '_tc_post_format' ]
548
551
if format_tag :
549
552
post_format = format_tag [0 ].getparent ().find ('{%s}meta_value' % wordpress_namespace ).text
553
+ if post_format == 'wpautop' :
554
+ post_format = 'wp'
550
555
551
556
if is_draft and self .exclude_drafts :
552
557
LOGGER .notice ('Draft "{0}" will not be imported.' .format (title ))
@@ -566,7 +571,12 @@ def import_item(self, item, wordpress_namespace, out_folder=None):
566
571
content_translations = {"" : content }
567
572
default_language = self .context ["DEFAULT_LANG" ]
568
573
for lang , content in content_translations .items ():
569
- content , extension = self .transform_content (content , post_format )
574
+ try :
575
+ content , extension = self .transform_content (content , post_format )
576
+ except :
577
+ LOGGER .error ('Cannot interpret post "{0}" (language {1}) with post ' +
578
+ 'format {2}!' .format (os .path .join (out_folder , slug ), lang , post_format ))
579
+ return False
570
580
if lang :
571
581
out_meta_filename = slug + '.meta'
572
582
if lang == default_language :
@@ -639,7 +649,8 @@ def import_posts(self, channel):
639
649
self .posts_pages [post_id ][2 ] + ".attachments.json" )
640
650
self .write_attachments_info (destination , self .attachments [post_id ])
641
651
else :
642
- LOGGER .warn ("Found attachments for post or page #{0}, but didn't find post or page. (Attachments: {1})" .format (post_id , [e [0 ] for _ , e in self .attachments [post_id ].items ()]))
652
+ LOGGER .warn ("Found attachments for post or page #{0}, but didn't find post or page. " +
653
+ "(Attachments: {1})" .format (post_id , [e [0 ] for _ , e in self .attachments [post_id ].items ()]))
643
654
644
655
645
656
def get_text_tag (tag , name , default ):
0 commit comments