Converts Markdown articles to beautifully styled HTML using Tailwind CSS. Creates responsive, accessible landing pages with proper semantic structure. Includes TOC generation, callouts, and interactive elements. Use after content is finalized and ready for publishing.
Wandelt Markdown-Artikel in gestylte HTML-Seiten mit Tailwind CSS um.
Input: Markdown Content + Brand Guidelines
Output: Responsive HTML + Tailwind Classes + Schema Markup
{
"html": {
"full_page": "<article>...</article>",
"sections": [
{
"id": "was-ist-content-marketing",
"html": "<section>...</section>"
}
],
"toc": "<nav class='toc'>...</nav>",
"schema": "<script type='application/ld+json'>...</script>"
},
"assets": {
"css_classes_used": ["prose", "container", "..."],
"images_referenced": ["hero.jpg", "diagram.png"],
"icons_used": ["info", "warning", "check"]
},
"meta": {
"word_count": 2500,
"reading_time": "12 min",
"headings_count": {"h2": 8, "h3": 15}
}
}
/* Brand Colors */
--primary: #003366; /* Dark Blue */
--accent: #ff6600; /* Orange */
--background: #ffffff;
--text: #333333;
--text-muted: #666666;
--border: #e5e5e5;
/* Tailwind Config */