From e54f706ae34a34a4d298dcf258a7b3f28b2bd5b9 Mon Sep 17 00:00:00 2001 From: Adam Fourney Date: Mon, 10 Feb 2025 00:38:40 -0800 Subject: [PATCH] Fixed a few typos. --- packages/markitdown-sample-plugin/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/markitdown-sample-plugin/README.md b/packages/markitdown-sample-plugin/README.md index a574be9..0c52be7 100644 --- a/packages/markitdown-sample-plugin/README.md +++ b/packages/markitdown-sample-plugin/README.md @@ -7,7 +7,7 @@ This project shows how to create a sample plugin for MarkItDown. The two most important parts are as follows: -First, implement you custom DocumentConverter: +First, implement your custom DocumentConverter: ```python from typing import Union @@ -30,7 +30,7 @@ class RtfConverter(DocumentConverter): ) ``` -Second, you create an entrypoint in the `pyproject.toml` file: +Second, create an entrypoint in the `pyproject.toml` file: ```toml [project.entry-points."markitdown.plugin.converters"]