npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

markdown-tool-plus

v1.1.0

Published

A toolbox for expanding markdown functionality

Downloads

5

Readme

markdown-tool-plus

功能

markdown-tool-plus 是一个功能强大的命令行工具,用于处理和增强 Markdown 文件的操作。它提供以下主要功能:

1. 清理未引用的图片资源

在编写和编辑 Markdown 文件时,往往会引用许多图片资源。这些图片资源有时可能不再被使用,但仍然保留在项目中,占用存储空间。markdown-tool-plus 提供了 images-clear 功能,可以自动检测并删除未被引用的图片资源。

使用方法--命令行

markdown-tool-plus images-clear <folder>

示例:folderA文件夹的目录如下所示,此命令将在folderA/index.assets中删除图片,在index.md文件中未引用的图片

.
├── folderA
│   └── index.md
|   └── index.assets
|       └── a.png
|       └── b.png
markdown-tool-plus images-clear D:\\Desktop\\folderA

使用方法--函数

你也可以在 Node.js 脚本中导入 markdown-tool-plus 模块,并使用其提供的功能:

const { processFolder } = require('markdown-tool-plus');

// 指定要处理的md文件所在文件夹的路径
const folderPath = 'D:\\Desktop\\folderA';

// 调用 processFolder 清理D:\\Desktop\\folderA
processFolder(folderPath);

2. 翻译 Markdown 文件

markdown-tool-plus 提供了翻译功能,可以将指定的 Markdown 文件内容翻译为其他语言。默认目标语言是英文(en),但您可以使用 --language 选项指定其他语言。

使用方法

markdown-tool-plus translate <file> [--language <language>] [--proxy <proxy>]

示例:

markdown-tool-plus translate path/to/file.md --language es

此命令将 file.md 翻译为西班牙语(es)。如果在使用 translate 命令时遇到网络问题,可以通过 --proxy 选项指定代理服务器。例如:

markdown-tool-plus translate path/to/file.md --proxy http://your-proxy-server:port

3. 列出当前可用的功能

markdown-tool-plus 提供了 ls 功能,列出所有当前可用的命令和功能说明。

使用方法

markdown-tool-plus ls

输出示例:

images-clear ------ 清理 assets 文件夹中未引用的图片资源
translate --------- 翻译指定的 Markdown 文件

安装

你可以使用 npm 全局安装 markdown-tool-plus

npm install -g markdown-tool-plus

贡献指南

我们欢迎所有的贡献!请在贡献之前阅读以下指南:

  1. 在 GitHub 上 fork 这个仓库。
  2. 将你的 fork 克隆到本地机器。
  3. 为你的新功能或 bug 修复创建一个新分支。
  4. 进行修改并提交代码,确保提交信息清晰简洁。
  5. 将你的修改推送到你的 fork。
  6. 提交一个 pull request 到主仓库。

请确保你的代码遵循项目的编码标准并通过所有测试。

许可证

这个项目是根据 ISC 许可证授权的。详情请参阅 LICENSE 文件。