All articles

Propel field notes

Test Post — Hello from Notion

A simple test post to check the write-and-publish-via-Notion workflow.

Testing the Blog Rendering Pipeline

This post exists to verify that content written in Notion renders correctly once published to the website. It exercises a range of formatting so you can spot anything the engine handles incorrectly.

Text formatting

You should see bold text, italic text, bold italic, strikethrough, and inline code. Here is an external link that should be clickable.

A bulleted list

  • First item, plain

  • Second item with bold inside

  • Third item with a nested list:

    • Nested item A
    • Nested item B

A numbered list

  1. Confirm topic and angle

  2. Draft the article in Notion

  3. Move status to Ready to Publish

  4. Engine publishes and writes back the URL

Quote and callout

Measurement only matters if someone acts on it.

Code block

def publish(post):
    html = render_markdown(post.body)
    url = website.publish(title=post.title, html=html)
    return url

Heading levels

Heading 3

Some supporting text under a level-three heading.

Wrap-up

If every element above renders cleanly on the site, the pipeline is good to go. This is placeholder content — safe to delete or overwrite after testing.