Ask Your Question
4

How can I use markdownPDF to transform the <img> tags in a markdown file?

asked 2021-10-18 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-08-01 02:00:00 +0000

woof gravatar image

To use markdownPDF to transform the tags in a markdown file, you need to first install markdownPDF using npm as follows:

npm install markdown-pdf

Then, create a markdown file that includes tags. For example:

# My Markdown File

Here is an image:

<img src="https://example.com/image.jpg" alt="Example Image">

Save the file as example.md.

Next, to transform the tags to images in the PDF, run the following command in your terminal:

markdown-pdf example.md -o example.pdf

This will create a PDF file named example.pdf in the current directory, which will include the image from the tag.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-10-18 11:00:00 +0000

Seen: 12 times

Last updated: Aug 01 '22