From 1e0d6051dc606fa4fdab8781b24a4a3b44a93211 Mon Sep 17 00:00:00 2001 From: Sai Roopesh Date: Mon, 17 Jun 2024 15:24:50 +0530 Subject: [PATCH] Add copy buttons for commands in README --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0015bb08..af4f5b77 100644 --- a/README.md +++ b/README.md @@ -41,16 +41,19 @@ How to use * Install Python 3.8 or newer. * Install pdfminer.six. - - `pip install pdfminer.six` +* + ```bash + pip install pdfminer.six * (Optionally) install extra dependencies for extracting images. - `pip install 'pdfminer.six[image]'` + ```bash + pip install 'pdfminer.six[image]' * Use the command-line interface to extract text from pdf. - `pdf2txt.py example.pdf` + ```bash + pdf2txt.py example.pdf * Or use it with Python.