Airtable Markdown to HTML Converter
detail.loadingPreview
Converts markdown descriptions from Airtable records to HTML format.
About This Workflow
This workflow is designed to fetch video descriptions from an Airtable base, convert them from Markdown to HTML, and then update the Airtable records with the generated HTML. This is useful for displaying formatted descriptions on web pages or other platforms that require HTML.
Key Features
- Fetches records from a specified Airtable base and table.
- Supports processing either a single record (identified by
recordIdin query parameters) or all records. - Utilizes the
markdownnode to convert Markdown text to HTML. - Updates the 'Video description HTML' field in Airtable with the converted HTML.
- Handles the logic to differentiate between single record updates and batch updates.
How To Use
- Trigger: This workflow can be triggered manually or via an external event (e.g., an HTTP request to an n8n webhook).
- Check Record Type: The 'Check if it's 1 record or all records - Airtable' node determines if a
recordIdis provided in the query parameters. IfrecordIdexists, it proceeds to fetch a single record. - Fetch Single Record: If processing a single record, the 'Get single record from airtable' node fetches the specific record using the provided
recordId. - Convert Markdown to HTML: The 'Convert markdown to HTML1' node takes the 'Video Description' field from the fetched record and converts it into HTML.
- Update Single Record: The 'Update single record in airtable' node updates the original Airtable record with the generated 'Video description HTML'.
- Fetch All Records: If no
recordIdis provided, the workflow implicitly assumes it needs to process all records (though the current JSON snippet doesn't explicitly show a node for fetching all records; it's implied by the structure of theifnode and the subsequentupdate all recordsnode). - Convert Markdown to HTML (All): The 'Convert markdown to HTML2' node (intended for batch processing) converts the 'Video Description' from each record.
- Update All Records: The 'Update all records in airtable' node updates all relevant Airtable records with the converted HTML descriptions. The
Unpublishedfield is set tofalsein this update.
Apps Used
Workflow JSON
{
"id": "191264d8-a2c5-46ee-bd75-44bb6e0aecd2",
"name": "Airtable Markdown to HTML Converter",
"nodes": 15,
"category": "Content Management",
"status": "active",
"version": "1.0.0"
}Note: This is a sample preview. The full workflow JSON contains node configurations, credentials placeholders, and execution logic.
Get This Workflow
ID: 191264d8-a2c5...
About the Author
Free n8n Workflows Official
System Admin
The official repository for verified enterprise-grade workflows.
Statistics
Related Workflows
Discover more workflows you might like
Generate WordPress Post with Multilingual Metadata
This workflow demonstrates how to create a WordPress post and then update it, with the intention of later adding multilingual metadata.
YouTube Video Summary and Metadata Automation
Automates the generation of structured summaries and metadata for YouTube videos, saving them as Markdown files to Dropbox.
YouTube Chapter Generator
Automatically generate YouTube video chapters and update the video description.