From e1ed49d43f5e81150eb775457698315f1b4de63d Mon Sep 17 00:00:00 2001 From: zboris12 Date: Sat, 10 Aug 2024 20:34:50 +0900 Subject: [PATCH] Made comment more accurate. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fbb620d..4435fef 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Just import the dependencies and this tool. ``` -When using feature of drawing text, importing the fontkit library is necessary. +When drawing text by non-standard font, importing the fontkit library is necessary. ```html ``` @@ -68,7 +68,7 @@ function setTimeout(func, sleep){ var window = globalThis; // Load pdf-lib eval(UrlFetchApp.fetch("https://unpkg.com/pdf-lib@1.17.1/dist/pdf-lib.min.js").getContentText()); -// It is necessary for drawing text feature. +// It is necessary for drawing text by non-standard font. eval(UrlFetchApp.fetch("https://unpkg.com/@pdf-lib/fontkit/dist/fontkit.umd.min.js").getContentText()); // Load node-forge eval(UrlFetchApp.fetch("https://unpkg.com/node-forge@1.3.1/dist/forge.min.js").getContentText());