@@ -156,7 +156,7 @@ using Gotenberg.Sharp.API.Client.Domain.Builders.Faceted;
156156using Gotenberg .Sharp .API .Client .Domain .Requests .Facets ; // For Cookie, etc.
157157```
158158
159- ### Html To Pdf
159+ ### HTML To PDF
160160* With embedded assets:*
161161
162162``` csharp
@@ -181,8 +181,8 @@ using Gotenberg.Sharp.API.Client.Domain.Requests.Facets; // For Cookie, etc.
181181 }
182182```
183183
184- ### Url To Pdf
185- * Url to Pdf with custom page range, header & footer:*
184+ ### URL To PDF
185+ * URL to PDF with custom page range, header & footer:*
186186
187187``` csharp
188188public async Task < Stream > CreateFromUrl (string headerPath , string footerPath )
@@ -222,8 +222,8 @@ public async Task<Stream> DoOfficeMerge(string sourceDirectory)
222222 return await _sharpClient .MergeOfficeDocsAsync (request );
223223}
224224```
225- ### Markdown to Pdf
226- * Markdown to Pdf conversion with embedded assets:*
225+ ### Markdown to PDF
226+ * Markdown to PDF conversion with embedded assets:*
227227
228228``` csharp
229229public async Task < Stream > CreateFromMarkdown ()
@@ -288,7 +288,7 @@ public async Task<Stream> CreatePdfWithMetadata()
288288 { " Author" , " John Doe" },
289289 { " Title" , " My Document" },
290290 { " Subject" , " Important Report" },
291- { " Keywords" , " report, pdf , gotenberg" }
291+ { " Keywords" , " report, PDF , gotenberg" }
292292 });
293293 })
294294 .WithPageProperties (pp => pp .UseChromeDefaults ());
@@ -366,8 +366,8 @@ public async Task<Stream> CreateSinglePagePdf()
366366 }
367367
368368```
369- ### Merge 15 Urls to one pdf
370- * Builds a 30 page pdf by merging the front two pages of 15 news sites. Takes about a minute to complete*
369+ ### Merge 15 URLs to one PDF
370+ * Builds a 30 page PDF by merging the front two pages of 15 news sites. Takes about a minute to complete*
371371
372372``` csharp
373373public async Task < Stream > CreateWorldNewsSummary ()
0 commit comments