Template Converter — Html To Blogger
# Add main blog widget main_section = soup.new_tag('b:section', id='main') blog_widget = soup.new_tag('b:widget', id='Blog1', type='Blog') main_section.append(blog_widget) soup.body.append(main_section)
# Move CSS to b:skin style = soup.find('style') if style: skin_tag = soup.new_tag('b:skin', version='1.2.0') skin_tag.append(f'<![CDATA[\nstyle.string\n]]>') soup.head.append(skin_tag) style.decompose() html to blogger template converter