Here’s the revised and consolidated version of the ai-markdown-translator
documentation with npx
and ./ai-markdown-translator
examples combined:
ai-markdown-translator
is a command-line tool that translates Markdown files from one language to another using OpenAI's language models. It preserves the Markdown syntax while translating the content.
- Translate Markdown files to any language supported by OpenAI's models.
- Preserve Markdown syntax during translation.
- Flexible configuration through command-line arguments or environment variables.
- Node.js (v14 or later)
- npm (usually comes with Node.js)
- An OpenAI API key
- Clone this repository or download the source code.
- Navigate to the project directory in your terminal.
- Install the dependencies:
npm install
- Build the project:
npm run build
build
: Compiles TypeScript files to JavaScript.start
: Runs the compiled JavaScript using Node.js.lint
: Runs ESLint to check for code quality issues in TypeScript files.lint:fix
: Automatically fixes linting issues in TypeScript files.format
: Formats code using Prettier for various file types in thesrc
directory.format:check
: Checks code formatting without making changes for various file types in thesrc
directory.postbuild
: Makes the compiledindex.js
file executable.changelog
: Generates a changelog based on conventional commits.version
: Updates the changelog and stages it for commit when versioning.test
: Builds the project and runs the test.
You can run the CLI tool using Node.js, npx
, or as a standalone executable (if you've packaged it).
node dist/index.js --input <input-file> --output <output-file> --language <target-language> [options]
npx ai-markdown-translator -i <input-file> -o <output-file> -l <target-language> [options]
For example:
npx ai-markdown-translator -u https://gitee.com/h7ml/ai-markdown-translator/raw/main/README.md -o output.md -l "Italian"
./ai-markdown-translator --input <input-file> --output <output-file> --language <target-language> [options]
-
--input
,-i
: Input Markdown file or directory (alternative to--url
). This option allows you to specify the path to the Markdown file or directory you want to translate. -
--url
,-u
: URL of a Markdown file to translate (alternative to--input
). Use this option to provide a direct link to a Markdown file that you want to translate. -
--extension
,-e
: Specify the file extension to translate (e.g.,md
). If not provided, all files will be processed. This option allows you to filter which files to translate based on their extension. -
--rename
: Whether to modify the file name. If true, the output file will be named<original-filename>-translated.<extension>
. This option allows you to specify if you want to append a suffix to the translated file name. -
--output
,-o
: Output Markdown file (if not provided, defaults to the input file name). This option allows you to specify the name of the output file where the translated content will be saved. -
--language
,-l
: Target language for translation (required). This option specifies the language into which you want the Markdown content to be translated. -
--openai-url
: OpenAI API URL (default: usesOPENAI_URL
environment variable). This option allows you to specify a custom URL for the OpenAI API if needed. -
--api-key
: OpenAI API Key (default: usesAPI_KEY
environment variable). This option is used to provide your OpenAI API key for authentication. -
--model
: OpenAI Model to use (default: usesMODEL
environment variable orgpt-3.5-turbo
). This option allows you to specify which OpenAI model to use for translation. -
--help
,-h
: Show help. This option displays the help information for the command-line tool. -
--show-version
,-v
: Show version. This option displays the current version of the tool.
Note:
--input
and--url
are mutually exclusive; you must provide one or the other.
You can set the following environment variables instead of passing them as command-line arguments:
OPENAI_URL
: The URL for the OpenAI API.API_KEY
: Your OpenAI API key.MODEL
: The OpenAI model to use (e.g.,'gpt-3.5-turbo'
).
You can set these in a .env
file in the project root or export them in your shell.
- Translate a Markdown file from English to Spanish:
npx ai-markdown-translator -i english.md -o spanish.md -l "Spanish"
- Translate using a specific OpenAI model:
npx ai-markdown-translator -i input.md -o output.md -l "French" --model "gpt-4"
- Translate with custom OpenAI URL and API key:
npx ai-markdown-translator -i input.md -o output.md -l "German" --openai-url "https://api.302.ai/v1/chat/completions" --api-key "sk-302-api-key"
- Translate the Markdown content of a URL:
npx ai-markdown-translator -u https://gitee.com/h7ml/ai-markdown-translator/raw/main/README.md -o output.md -l "Italian"
- Translate all Markdown files in a directory and rename them:
npx ai-markdown-translator -i ./markdown-files -l "Chinese" --rename
- Translate a Markdown file and specify the output file name:
npx ai-markdown-translator -i example.md -o translated_example.md -l "Japanese"
- Repository: h7ml/ai-markdown-translator
- Issues: Report Issues
- Current Version: 1.0.8
- NPM Package: ai-markdown-translator
This project uses GitHub Actions for continuous integration. The CI workflow includes:
- Linting the code with ESLint
- Running tests (if applicable)
- Building the project
- Caching dependencies for faster builds
Contributions are welcome! Please feel free to submit a Pull Request.
If you encounter any problems or have any questions, please open an issue in this repository.
This version combines the usage examples for both npx
and the standalone executable (./ai-markdown-translator
) into one cohesive section. Let me know if you'd like to make any further adjustments!