An open API service indexing awesome lists of open source software.

https://github.com/tejas-raskar/noted.md

A command-line tool to convert handwritten notes to markdown files
https://github.com/tejas-raskar/noted.md

markdown rust

Last synced: 3 months ago
JSON representation

A command-line tool to convert handwritten notes to markdown files

Awesome Lists containing this project

README

          



███╗ ██╗ ██████╗ ████████╗███████╗██████╗ ███╗ ███╗██████╗
████╗ ██║██╔═══██╗╚══██╔══╝██╔════╝██╔══██╗ ████╗ ████║██╔══██╗
██╔██╗ ██║██║ ██║ ██║ █████╗ ██║ ██║ ██╔████╔██║██║ ██║
██║╚██╗██║██║ ██║ ██║ ██╔══╝ ██║ ██║ ██║╚██╔╝██║██║ ██║
██║ ╚████║╚██████╔╝ ██║ ███████╗██████╔╝██╗██║ ╚═╝ ██║██████╔╝
╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚══════╝╚═════╝ ╚═╝╚═╝ ╚═╝╚═════╝


A command-line tool to convert handwritten notes into a clean and readable Markdown file.


Build Status
Version
Downloads
License

---

`noted.md` is a CLI tool that uses LLMs to convert your handwritten text into markdown files. It's an interactive program that accepts pdfs, jpg, jpeg, png as an input and processes them accordingly. It can recognize mathematical equations too and can correctly format them in LaTeX. And if you have bunch of files to convert them at once, `noted.md` supports batch processing too!

https://github.com/user-attachments/assets/5e2f4ab5-2043-4ea4-b95d-bf63e36ce9d9

## Installation

`noted.md` can be installed on macOS, Linux, and Windows.

### macOS & Linux (Recommended: Homebrew)

For the easiest installation on macOS and Linux, use Homebrew:

```bash
brew tap tejas-raskar/noted.md
brew install notedmd
```

To update `noted.md` to the latest version:

```bash
brew upgrade notedmd
```

### Manual Download (Windows)

For Windows, download the latest `.zip` archive from the [Releases page](https://github.com/tejas-raskar/noted.md/releases/latest). Extract the contents and add the `bin` directory to your system's PATH.

### Building from Source

If you prefer to build from source, clone the repository and use Cargo:

```bash
git clone https://github.com/tejas-raskar/noted.md.git
cd noted.md
cargo build --release
# The executable will be in target/release/notedmd
```

## Usage

The typical workflow is:
1. **Configure your AI provider**: Use `notedmd config --edit` for a guided setup.
2. **Convert your files**: Use `notedmd convert ` to process your notes.

### Commands

| Command | Description |
| ----------------- | ------------------------------------------------------------------------------------ |
| `notedmd convert` | Converts a file or all supported files in a directory into Markdown. |
| `notedmd config` | Manages the AI provider configuration. Shows the current config if no flags are used. |

---

## Configuration

### Interactive Setup (Recommended)

For first-time users, the interactive setup is the easiest way to get started. Run:
```bash
notedmd config --edit
```
This will guide you through selecting an AI provider (Gemini, Claude, or Ollama) and entering the necessary credentials, such as API keys or server details.

### AI Providers

You can choose between three AI providers.

#### Gemini and Claude APIs
You will need an API key from your chosen provider:
- **Gemini API:** [Google AI Studio](https://aistudio.google.com/app/apikey)
- **Claude API:** [Anthropic's website](https://console.anthropic.com/dashboard)

#### Ollama
Make sure Ollama is installed and running on your local machine. You can download it from [Ollama's website](https://ollama.com/).

#### OpenAI API compatible clients
Supports all clients that are compatible with the OpenAI API. [LM Studio](https://lmstudio.ai/) for example.

---

### Notion
You can also save your converted notes directly to a Notion database. To do this, you'll need to create a Notion integration and provide the API key and database ID.

**1. Create a Notion Integration:**
Follow the [official Notion guide](https://developers.notion.com/docs/create-a-notion-integration#create-your-integration-in-notion) to create an integration and get your API key (Internal Integration Token).

**2. Share the Database with the Integration:**
For `noted.md` to be able to add pages to your database, you need to share it with the integration you created.
- Go to your database in Notion.
- Click the **•••** menu in the top-right corner.
- Click **+ Add connections** and select your integration.

**3. Get the Database ID:**
The database ID is the long string of characters in the URL of your database. For example, if your database URL is `https://www.notion.so/my-workspace/1234567890abcdef1234567890abcdef?v=...`, your database ID is `1234567890abcdef1234567890abcdef`.

You will be prompted to enter the API key and database ID when you run `notedmd config --edit` and choose to configure Notion.

---

### Managing Configuration via Flags

You can also manage your configuration directly using flags.

| Flag | Description |
| -------------------------------- | --------------------------------------------------------------------------- |
| `--set-provider ` | Set the active provider (`gemini`, `claude`, `ollama`). |
| `--set-api-key ` | Set the API key for Gemini. |
| `--set-claude-api-key ` | Set the API key for Claude. |
| `--show` | Display the current configuration. |
| `--show-path` | Show the path to your configuration file. |
| `--edit` | Start the interactive configuration wizard. |

**Examples:**
- Set the active provider to Claude:
```bash
notedmd config --set-provider claude
```
- Set your Gemini API key:
```bash
notedmd config --set-api-key YOUR_GEMINI_API_KEY
```

---

## Converting Files

Once configured, you can convert your handwritten notes.

| Flag | Description |
| -------------------------------- | --------------------------------------------------------------------------- |
| `-o`, `--output ` | Specify a directory to save the converted Markdown file(s). |
| `-p`, `--prompt ` | Add a custom prompt to override the default instructions for the LLM. |
| `--api-key ` | Temporarily override the stored API key for a single `convert` command. |
| `-n`, `--notion` | Save the converted file to your configured Notion database. |

**Examples:**

- **Convert a single file**:
The converted file will be saved in the same directory with a `.md` extension (e.g., `my_document.md`).
```bash
notedmd convert my_document.pdf
```

- **Convert a file and save it to Notion**:
```bash
notedmd convert my_notes.png --notion
```

- **Convert a file with a custom prompt**:
```bash
notedmd convert my_notes.png --prompt "Transcribe this into a bulleted list."
```

- **Convert a file and save it to a different directory**:
```bash
notedmd convert my_document.pdf --output ./markdown_notes/
```

- **Convert all supported files in a directory**:
```bash
notedmd convert ./my_project_files/
```

- **Convert all files in a directory to a specific output directory**:
```bash
notedmd convert ./my_project_files/ --output ./markdown_notes/
```

## Contributing

Contributions are welcome! If you have a feature request, bug report, or want to contribute to the code, please feel free to open an issue or a pull request on our [GitHub repository](https://github.com/tejas-raskar/noted.md).

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.