From 76bc9d4ae7982e2ceda673860067ebd0e8223003 Mon Sep 17 00:00:00 2001 From: Quentin Dequippe Date: Fri, 1 Nov 2024 20:36:38 +0400 Subject: [PATCH] fix(readme): add missing filename Stream (#53) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be40372..c038672 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ Gotenberg::libreOffice($apiUrl) // Alternatively, you may also set the content directly. Gotenberg::chromium($apiUrl) ->pdf() - ->html(Stream::string('

Hello, world!

')); + ->html(Stream::string('index.html', '

Hello, world!

')); // Or create your stream from scratch. Gotenberg::libreOffice($apiUrl)