agentsclimarketplace

Markdown to html

Skill baserproject/baser-skills/.agents/skills/markdown-to-html

Convert Markdown text or .md files into HTML fragments or full HTML documents. Use when the user asks to transform Markdown into HTML, preserve headings/lists/links/code blocks, or generate browser-ready HTML from Markdown. 日本語で「マークダウンをHTMLに変換して」と頼まれたときにも使う。From its SKILL.md

Install
npx -y skills add baserproject/baser-skills --skill markdown-to-html

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.9 KB, 550 tokens by cl100k_base, as published. Nobody here has run it

Markdown to HTML

Markdown を HTML に変換するためのスキル。

When to use

  • ユーザーが Markdown を HTML に変換したい
  • .md ファイルから HTML ファイルを作りたい
  • 本文だけの HTML 断片、またはブラウザで開ける完全な HTML 文書が必要

Workflow

  1. 入力がファイルなら中身を確認する。文字列ならそのまま扱う。
  2. 変換は scripts/md_to_html.py を優先して使う。
  3. デフォルトでは完全な HTML 文書を出力する。
  4. HTML 断片が必要な場合は --fragment を付ける。
  5. タイトル指定があれば --title を使う。なければ入力ファイル名か既定値を使う。
  6. 出力後に見出し、箇条書き、コードブロック、リンクが崩れていないか軽く確認する。

Commands

ファイルを HTML 文書へ変換:

python3 scripts/md_to_html.py input.md -o output.html --title "Document Title"

標準入力から HTML 断片を生成:

printf '# Hello\n\n- one\n- two\n' | python3 scripts/md_to_html.py --stdin --fragment

Notes

  • 外部ライブラリなしで動く軽量実装。
  • 対応する主な記法: 見出し、段落、箇条書き、番号付きリスト、引用、コードフェンス、インラインコード、強調、リンク、画像、水平線、Markdown テーブル。
  • 複雑な Markdown 拡張記法や厳密な CommonMark 完全互換が必要な場合は、その制約をユーザーに共有したうえで対応範囲を明示する。

What ships with it: 2 files

8.9 KB alongside SKILL.md, 1 of them executable

agents/

scripts/

Gives 0 of the 12 instructions most docs writing skills give in 550 tokens

Counted across 1,637 of the 3,044 authors here whose files we hold, read 2026-08-07

  • Announce the skill at startin 54 of 1637, across 26 files
  • Convert legacy doc files before editingin 45 of 1637, across 7 files
  • Predict questions readers might askin 42 of 1637, across 4 files
  • Generate clarifying questions for initial contextin 42 of 1637, across 3 files
  • Create document scaffold with placeholder textin 42 of 1637, across 3 files
  • Brainstorm content options for each sectionin 42 of 1637, across 3 files
  • Test the document with a fresh context-less instancein 42 of 1637, across 3 files
  • Include exact file paths in every taskin 42 of 1637, across 15 files
  • Ask interview questions one at a timein 42 of 1637, across 27 files
  • Apply surgical edits during refinementin 41 of 1637, across 2 files
  • Offer structured workflow or freeformin 40 of 1637, across 1 file
  • Ask for document meta-contextin 40 of 1637, across 2 files

Said here and by no other author read

  • check file contents if input is a file
  • prefer the conversion script
  • output a full HTML document by default
  • use the fragment flag for HTML fragments
  • use the title flag if a title is specified
  • verify headings, lists, code blocks, and links after output

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.