npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@propra/mdpdfmake

v1.0.13

Published

A Node.js library to convert Markdown to PDFMake Syntax

Downloads

1,050

Readme

mdpdfmake (Convert Markdown to pdfmake easily)

Finding a converter that can convert Markdown to PDFMake can be difficult. This package aims to solve that problem by providing a simple function that takes Markdown input (string) and converts it into a format that can be used with the PDFMake library.

This allows you to easily create PDF documents from your Markdown files.

[!IMPORTANT] This is a fork that is compatible with browser

Features

  • Headers: Supports all levels of Markdown headers.

  • Lists: Supports both ordered and unordered lists.

  • Links: Converts Markdown links into clickable links in the PDF.

  • Images: Converts Markdown image syntax into images in the PDF.~~

  • Text Styling: Supports bold, italic, strikethrough, and underline text styles.

  • Complex Markdown: Supports complex Markdown syntax such as nested bold/italic text, and nested blockquote paragraphs.

Installation

Simply use npm to install this package


npm  install  mdpdfmake

Usage

To use this converter, simply import the module and call the convert function with your Markdown text as the argument. The function will return a PDFMake document definition that you can use to create your PDF.


import { mdpdfmake } from  "mdpdfmake";



const  options = {
  headings: {
	h1: {
		fontSize:  30,
		bold:  false,
		margin: [0, 10, 0, 10],
	},
	h2: { ...
  }
};



const  markdown = `# Heading

This is a paragraph with **bold** text and *italic* text.

- List Item 1

- List Item 2

> Blockquote

`;



mdpdfmake(markdown, options).then((docDefinition) => {

// Use docDefinition with a PDFMake instance to generate a PDF

});

Note: The response from the convert function is a Promise, so you will need to use async/await or .then() to get the result.

API Reference

mdpdfmake(markdown: string, options?: MOptions): Promise<TDocumentDefinitions> - Converts the given Markdown string into a PDFMake document definition.

Parameters:

  • markdown (string, options?): Converts the given Markdown string into a PDFMake document definition.

Options

Headings

An object for each headings ( h1 - h6 ) to set custom font size, bold, margins and underline

Defaults
headings: {
  h1: { fontSize: 36, bold: true, margin: [0, 10, 0, 10] },
  h2: { fontSize: 30, bold: true, margin: [0, 10, 0, 10] },
  h3: { fontSize: 24, bold: true, margin: [0, 5, 0, 5], },
  h4: { fontSize: 18, bold: true, margin: [0, 5, 0, 5], },
  h5: { fontSize: 15, bold: true, margin: [0, 5, 0, 5], },
  h6: { fontSize: 12, bold: true, margin: [0, 5, 0, 5], }
}

Type

headings?: { h1?: { fontSize?: number; bold?: boolean; margin?: number[]; }; h2?: ... }

Hr

Custom settings for hr line

Defaults
hr: { lineThickness: 1, lineWidth: 515, lineColor: "#2c2c2c", margin: [0, 10, 0, 10], }

Type

hr?: { lineThickness?: number; lineWidth?: number; lineColor?: string; margin?: number[]; };

Blockquote

Custom settings for blockquote

Defaults
{ italics: true, margin: [0, 5, 0, 5], background: "#eae7f2", }

Type

blockquote?: { italics?: boolean; margin?: number[]; background?: string; };

List

Set custom margins and font size for list

Defaults
{ margin: [0, 5, 0, 5], fontSize: 14 }

Type

list?: { margin?: number[]; fontSize?: number };

Paragraph

Set custom margins and font size for paragraph

Defaults
{ margin: [0, 5, 0, 5], fontSize: 14 }

Type

paragraph?: { margin?: number[]; fontSize?: number };

Codeblock

Set custom margins for codeblock

Defaults
{ margin: [0, 5, 0, 5] }

Type

codeblock?: { margin?: number[]; };

Upcoming Features

  • Table Support: Add support for converting Markdown tables into tables in the PDF.

Contributing

Contributions to this project are welcome! If you're interested in adding a feature or fixing a bug, please open a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.