1.20.6 • Published 7 months ago

pdf-to-markdown-converter v1.20.6

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

PDF to Markdown Converter

Convert PDF files to Markdown format with support for text formatting, lists, headers, and hyperlinks.

Installation

npm install pdf-to-markdown-converter

Usage

const PDFToMarkdown = require('pdf-to-markdown-converter');

// Initialize converter
const converter = new PDFToMarkdown({
    preserveFormatting: true,    // Maintain text formatting
    includeImages: false,        // Skip images
    preserveLinks: true          // Convert hyperlinks
});

// Convert single file
try {
    await converter.convertFile('input.pdf', 'output.md');
    console.log('Conversion complete');
} catch (error) {
    console.error('Conversion failed:', error);
}

Options

OptionTypeDefaultDescription
preserveFormattingbooleantrueMaintain text formatting like headers and lists
includeImagesbooleanfalseFuture support for image extraction
preserveLinksbooleantrueConvert PDF hyperlinks to markdown format

Features

  • Converts PDF text to Markdown
  • Detects and formats headers
  • Preserves bullet points and numbered lists
  • Converts hyperlinks to markdown format [text](url)
  • Maintains paragraph structure

Author

Gurshaan Singh

https://github.com/gurshaan17/

1.20.6

7 months ago

1.20.5

7 months ago

1.20.4

7 months ago

1.20.3

7 months ago

1.20.2

7 months ago

1.20.1

7 months ago

1.20.0

7 months ago

1.18.0

7 months ago

1.17.0

7 months ago

1.16.6

7 months ago

1.16.5

7 months ago

1.16.3

7 months ago

1.16.2

7 months ago

1.16.0

7 months ago

1.15.2

7 months ago

1.15.1

7 months ago

1.15.0

7 months ago

1.14.1

7 months ago

1.14.0

7 months ago

1.13.6

7 months ago

1.13.5

7 months ago

1.13.4

7 months ago

1.13.3

7 months ago

1.13.2

7 months ago

1.13.1

7 months ago

1.13.0

7 months ago

1.12.6

7 months ago

1.12.5

7 months ago

1.12.4

7 months ago

1.12.3

7 months ago

1.12.2

7 months ago

1.12.1

7 months ago

1.12.0

7 months ago

1.11.0

7 months ago

1.10.1

7 months ago

1.9.1

7 months ago

1.9.0

7 months ago

1.8.1

7 months ago

1.8.0

7 months ago

1.7.1

7 months ago

1.7.0

7 months ago

1.6.0

7 months ago

1.5.1

7 months ago

1.5.0

7 months ago

1.4.2

7 months ago

1.4.1

7 months ago

1.4.0

7 months ago

1.3.1

7 months ago

1.3.0

7 months ago

1.2.0

7 months ago

1.1.0

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago