📄
WritingPython

Excel To Markdown

by CoderWanFeng

Excel To Markdown is a Writing skill for Claude Code, published by CoderWanFeng in python-office.

1.3K stars301 forkson CoderWanFeng/python-officeAdded 2026/08/12Repository updated 2026/08/04
officepippypipythonweixin
Install in seconds
Install Excel To Markdown
Copy Excel To Markdown into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/markdown/excel2markdown ~/.claude/skills/excel2markdown

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/CoderWanFeng/python-office.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/markdown/excel2markdown/SKILL.md in CoderWanFeng/python-office
Installs to
~/.claude/skills/excel2markdown
Collection
One of 50 skills cataloged from this repository
Category
Writing1012 skills

What Excel To Markdown does

Excel To Markdown converts Excel files into Markdown documents, with optional selection of a specific worksheet. Use it when turning spreadsheets into MD tables or documenting spreadsheet content.

Excel To Markdown is cataloged under Writing on DirSkills. Excel To Markdown comes from a repository tagged office, pip, pypi, python and weixin.

Documentation

README

excel2markdown Skill

将 Excel 文件转换为 Markdown 格式的文件

功能描述

将 Excel 文件转换为 Markdown 格式的文件,支持选择转换指定工作表。

所属分类

office/skills/markdown/excel2markdown/

调用方式

from skills.markdown import excel2markdown

excel2markdown(
    input_file='./data.xlsx',
    output_file='./output.md',
    sheet_name=None
)

参数说明

参数 类型 必填 默认值 说明
input_file str - 输入 Excel 文件的路径
output_file str './excel2markdown.md' 输出 Markdown 文件的路径
sheet_name str None 需要转换的 Excel 工作表名称。默认转换所有工作表

返回值

None

使用示例

from skills.markdown import excel2markdown
excel2markdown(input_file='./report.xlsx', output_file='./report.md')

原始函数

office.api.markdown.excel2markdown

Frequently asked about Excel To Markdown

  • What else does CoderWanFeng publish alongside Excel To Markdown?

    Excel To Markdown is one of 50 skills that DirSkills catalogs from CoderWanFeng/python-office, the repository it ships in. Its siblings there include Add Image Watermark, Add Line by Type and Add Text Watermark. Each one is a separate skill with its own page in this directory, installs the same way Excel To Markdown does, and is maintained by CoderWanFeng in that same repository. The rest of the collection is listed on the CoderWanFeng/python-office page.

  • How does Excel To Markdown compare to other Writing skills?

    Excel To Markdown ranks #346 by stars among the 1012 Writing skills in this catalog. The most-starred ones next to it are Article Writing, Social Media Content Calendar and Knowledge Comic Creator. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Excel To Markdown against them. Open each page to compare what they document and how they install.