Coder Social home page Coder Social logo

hammo92 / mdpdfmake Goto Github PK

View Code? Open in Web Editor NEW

This project forked from propra-tech/mdpdfmake

0.0 0.0 0.0 1.07 MB

Convert your Markdown into pdfmake syntax

Home Page: https://www.npmjs.com/package/@propra/mdpdfmake

License: MIT License

JavaScript 2.90% TypeScript 97.10%

mdpdfmake's Introduction

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.

mdpdfmake's People

Contributors

ericbois avatar hackerbone avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.