Skip to content

Commit 30e0e42

Browse files
committed
chore: minor typo fixes
1 parent 1c76ad4 commit 30e0e42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/blog/1-5-million-pdfs-in-25-minutes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The global job states are stored in a Redis instance. It serves a dual role in t
6868

6969
Initially, PDFs were generated from HTML using Puppeteer, which involved spawning headless instances of Chrome. This of course grew to be slow and quite resource-intensive as our volume grew.
7070

71-
After several experiments, we had a breakthrough using LaTeX instead of HTML and generating PDFs using `pdflatex`. By converting our HTML templates into TEX formats and utilizing `pdflatex` for PDF generation, we observed a 10X increase in speed compared to the original Puppeteer way of generating. Moreover, pdflatex required significantly fewer resources, making it a much leaner solution for our PDF generation needs.
71+
After several experiments including benchmarking PDF generation with complex layouts using native libraries in different programming languages, we had a breakthrough using LaTeX instead of HTML and generating PDFs using `pdflatex`. By converting our HTML templates into TEX formats and utilizing `pdflatex` for PDF generation, we observed a 10X increase in speed compared to the original Puppeteer way of generating. Moreover, pdflatex required significantly fewer resources, making it a much leaner solution for our PDF generation needs.
7272

7373
### Problems with LaTeX
7474

0 commit comments

Comments
 (0)