From 579aaa5cab813941b0dca7889440f32d1dad1093 Mon Sep 17 00:00:00 2001 From: Christian Rodriguez Date: Tue, 16 Jan 2024 12:33:59 -0300 Subject: [PATCH] Actualizo readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0d34dde..cc2c283 100644 --- a/README.md +++ b/README.md @@ -7,19 +7,19 @@ configuration to be used with [Mikroways](https://mikroways.net) theme. Install this package with npm: -``` +```bash npm i --save @mikroways/md2pdf-theme ``` And it will install md-to-pdf as dependency and provides a script to be used as its configuration: -``` +```bash curl -o /tmp/sample.md -L \ - https://raw.githubusercontent.com/Mikroways/md-to-pdf-theme/main/README.md -node_modules/bin/md-to-pdf \ + https://raw.githubusercontent.com/Mikroways/md2pdf-theme/main/README.md +node_modules/.bin/md-to-pdf \ --document-title "Test document" \ - --config-file node_modules/@mikroways/mw-md2pdf/config.js \ + --config-file node_modules/@mikroways/md2pdf-theme/config.js \ /tmp/sample.md ```