Release notes — markdown to page snippet

The changelog is written in Markdown; render it to HTML and lift the headline with a CSS selector — ready to drop into the status page.

What’s inside

4 nodes — every type links to its full reference page.

StepNodeType
CHANGELOG.md Inject input.inject
Render HTML Markdown processing.markdown
Lift headline HTML Extract processing.html-extract
Publish Console utility.console

Import it

  1. Studio → Import — paste the JSON below (or the URL /docs/templates/release-notes-markdown-to-page-snippet.json).
  2. Or ask the AI Copilot with the JSON pasted after the phrase:
    import this workflow json into a new workflow named "Release notes — markdown to page snippet"
  3. Any credentials the nodes need are ${credential.…} references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 4 node types)
{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Release notes — markdown to page snippet",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "CHANGELOG.md",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": "# v2.4 — Faster exports\n\n- CSV exports are **3× faster**\n- Fixed the Tuesday report"
      },
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "render",
      "type": "processing.markdown",
      "label": "Render HTML",
      "category": "processing",
      "config": {
        "operation": "markdownToHtml",
        "sourceField": "",
        "outputField": "html"
      },
      "position": {
        "x": 530,
        "y": 0
      }
    },
    {
      "id": "headline",
      "type": "processing.html-extract",
      "label": "Lift headline",
      "category": "processing",
      "config": {
        "sourceField": "html",
        "extractions": [
          {
            "field": "headline",
            "selector": "h1",
            "attr": "",
            "multiple": false
          }
        ],
        "trim": true
      },
      "position": {
        "x": 1060,
        "y": 0
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Publish",
      "category": "utility",
      "config": {
        "message": "Status page headline: “{{ $json.headline }}”"
      },
      "position": {
        "x": 1590,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "render",
      "targetPort": "input"
    },
    {
      "id": "e1",
      "sourceNodeId": "render",
      "sourcePort": "output",
      "targetNodeId": "headline",
      "targetPort": "input"
    },
    {
      "id": "e2",
      "sourceNodeId": "headline",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "The changelog is written in Markdown; render it to HTML and lift the headline with a CSS selector — ready to drop into the status page."
  }
}

Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: release-notes-markdown-to-page-snippet.json.