When importing I tried markdown but now my blog body content just has a bunch of # signs lol.
Do I need to use html? Is there a way to do this without manually updating EVERY tag in EVERY blog via the manual editor? Please tell me there is another way
Note: here is the payload I am sending via API, the blog content for the body is sent via post_body and formatted as markdown:
payload = {
“fields”: {
“name”: title,
“slug”: slug,
“post-body”: post_body,
“post-summary”: post_summary,
“author-name”: author_name,
“blog-category”: blog_category_id,
“_archived”: False,
“_draft”: False,
“tags-2”: “TAG_ID”, # all posts are tagged with this tag
“main-image”: main_image, # main image from CSV
“thumbnail”: thumbnail # thumbnail image from CSV
}
Here is my site Read-Only: LINK
(how to share your site Read-Only link)