node-poppler 6.1.1 → 6.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,18 +2,17 @@
2
2
 
3
3
  [![GitHub Release](https://img.shields.io/github/release/Fdawgs/node-poppler.svg)](https://github.com/Fdawgs/node-poppler/releases/latest/)
4
4
  [![npm version](https://img.shields.io/npm/v/node-poppler)](https://npmjs.com/package/node-poppler)
5
- ![Build Status](https://github.com/Fdawgs/node-poppler/workflows/CI/badge.svg?branch=master)
6
- [![Coverage Status](https://coveralls.io/repos/github/Fdawgs/node-poppler/badge.svg?branch=master)](https://coveralls.io/github/Fdawgs/node-poppler?branch=master)
5
+ ![Build Status](https://github.com/Fdawgs/node-poppler/workflows/CI/badge.svg?branch=main)
6
+ [![Coverage Status](https://coveralls.io/repos/github/Fdawgs/node-poppler/badge.svg?branch=main)](https://coveralls.io/github/Fdawgs/node-poppler?branch=main)
7
7
  [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat)](https://github.com/prettier/prettier)
8
8
 
9
9
  > Asynchronous node.js wrapper for the Poppler PDF rendering library
10
10
 
11
- ## Intro
11
+ ## Overview
12
12
 
13
13
  [Poppler](https://poppler.freedesktop.org/) is a PDF rendering library that also includes a collection of utility binaries, which allows for the manipulation and extraction of data from PDF documents such as converting PDF files to HTML, TXT, or PostScript.
14
14
 
15
15
  The `node-poppler` module provides an asynchronous node.js wrapper around said utility binaries for easier use.
16
- It was created out of a need for a PDF-to-HTML conversion module at [Yeovil District Hospital NHS Foundation Trust](https://yeovilhospital.co.uk/) to convert clinical documents.
17
16
 
18
17
  ## Installation
19
18
 
@@ -23,7 +22,7 @@ Install using `npm`:
23
22
  npm i node-poppler
24
23
  ```
25
24
 
26
- ### Linux and macOS/Darwin Support
25
+ ### Linux and macOS/Darwin support
27
26
 
28
27
  Windows binaries are provided with this repository.
29
28
  For Linux users, you will need to download the `poppler-data` and `poppler-utils` binaries separately.
@@ -54,7 +53,7 @@ const poppler = new Poppler("/usr/bin");
54
53
  const { Poppler } = require("node-poppler");
55
54
  ```
56
55
 
57
- [**API Documentation can be found here**](https://github.com/Fdawgs/node-poppler/blob/master/API.md)
56
+ [**API Documentation can be found here**](https://github.com/Fdawgs/node-poppler/blob/main/API.md)
58
57
 
59
58
  ## Examples
60
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-poppler",
3
- "version": "6.1.1",
3
+ "version": "6.1.2",
4
4
  "description": "Asynchronous node.js wrapper for the Poppler PDF rendering library",
5
5
  "keywords": [
6
6
  "async",