aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index a01f268..05795ef 100644
--- a/README.md
+++ b/README.md
@@ -76,7 +76,11 @@ const jpegStream = await renderToImage(map, ImageType.JPEG, StageType.UBIQUITY);
jpegStream.pipe(fs.createWriteStream("map.jpeg"));
// PDF, with a stage type override
-const pdfStream = await renderToImage(map, ImageType.PDF, StageType.PUBLICATION_TYPES);
+const pdfStream = await renderToImage(
+ map,
+ ImageType.PDF,
+ StageType.PUBLICATION_TYPES,
+);
pdfStream.pipe(fs.createWriteStream("map.pdf"));
```