Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Magazine Article (article-magazine)

A layout template skill that makes Claude render long-form content as polished, Substack/Medium-style HTML articles.

Content & WritingBeginner8,935869AI score 5/10Last updated: Sep 15, 2026

What it does

  • Gives Claude a concrete typography spec for turning any draft into a magazine-style HTML article.
  • Defines the hero block (large title, optional subtitle, author / read time / date), a centered single column capped around 700px, serif H2/H3 headings for contrast, accent-bordered italic blockquotes, rounded dark code blocks with language labels, custom list bullets, ornamental <hr> dividers, and a closing "share this" call-to-action card.
  • Uses Tailwind utility classes (e.g. text-lg leading-relaxed text-neutral-700 dark:text-neutral-300), so output is dark-mode aware.

Who it's for

  • Writers publishing long posts to blogs, newsletters, or owned media who want good-looking HTML.
  • Solo devs and marketers converting Markdown drafts into publish-ready pages.
  • Content teams that want a consistent article style without re-explaining design intent each time.

Example uses

  1. "Turn this Markdown draft into a single-file magazine-style HTML article" → hero, body, and share card included.
  2. A code-heavy engineering post → all snippets rendered as rounded dark blocks with language tags.
  3. A newsletter archive page → multiple issues share the same 700px measure and ornamental dividers for a unified look.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/nexu-io/html-anything/HEAD/next/src/lib/templates/skills/article-magazine/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the next/src/lib/templates/skills/article-magazine folder from the GitHub repo nexu-io/html-anything into my ~/.claude/skills/article-magazine/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/nexu-io/html-anything.git && mkdir -p ~/.claude/skills/article-magazine && cp -r html-anything/next/src/lib/templates/skills/article-magazine/* ~/.claude/skills/article-magazine/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/nexu-io/html-anything.git
  3. Create the skill folder: mkdir -p ~/.claude/skills/article-magazine
  4. Copy the template in: cp -r html-anything/next/src/lib/templates/skills/article-magazine/* ~/.claude/skills/article-magazine/
  5. Restart Claude Code and confirm article-magazine appears in your skills list.
  6. When invoking it, say something like "lay this article out magazine-style as HTML" and mention whether your project already uses Tailwind CSS or needs the CDN added.
View source on GitHubLicense: Apache-2.0