Skip to content

Commit de9fd81

Browse files
authored
Update Readme.md
1 parent 82ef0fa commit de9fd81

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ Well, now there is!
1717

1818
AspNetStatic lets you generate a static website with the same ASP.NET Core tools you love and use every day. Just add this module and a bit of configuration, and BAM!, you have yourself a static site generator.
1919

20-
But wait, there's more!
20+
#### But wait, there's more!
2121

2222
AspNetStatic can also be used in a mixed mode configuration where some of the pages in your site are static html files (generated with the same \_layout & page layers that define the look & feel of the rest of your site), while others remain dynamically generated per request. See _Partial Static Site_ under _Scenarios_ section below.
2323

24-
Oh, and one more thing!
24+
#### What about Blazor?
2525

26-
AspNetStatic now works with Blazor websites, thanks to the new Blazor SSR capability in ASP.NET Core 8.
26+
Yes, AspNetStatic works great with Blazor too.
2727

28-
> :bulb: Blazor pages must not rely on any client-side (JS, WASM) behavior for rendering, or behaviors like showing a placeholder (e.g. a spinner) before rendering the actual content. The rule-of-thumb (for any technology you use with AspNetStatic) is that as long as the content has completed rendering by the time AspNetStatic receives it (via its HttpClient request), it will work fine.
28+
> :bulb: Blazor pages must not rely on any client-side (JS, WASM) behavior for rendering, or behaviors like showing a placeholder (e.g. a spinner) before rendering the actual content. The rule-of-thumb (for any tech you want to use with AspNetStatic) is that as long as the content has completed rendering by the time AspNetStatic receives it (via its http request), it will work fine.
2929
3030
### No Frameworks. No Engines. No Opinions!
3131

3232
Build your ASP.NET site the way you always have. AspNetStatic doesn't have any opinions about how you should build your server-rendered site.
3333
AspNetStatic is not a framework. It's not a CMS. There's no blog engine. It has no templating system.
34-
AspNetStatic does just one thing, create static files for selected routes in your ASP.NET Core app.
34+
AspNetStatic does just one thing, create static files for selected routes in your ASP.NET Core project.
3535
That means you can use whatever framework, component, package, or architectural style you like. Want to use a blog engine? No problem. Want to use a CMS? No problem. Want to create a documentation site using a markdown processor to render page content? No problem!
3636
AspNetStatic doesn't care; it will create optimized static files no matter how the content is produced by the server.
3737

@@ -42,7 +42,7 @@ AspNetStatic doesn't care; it will create optimized static files no matter how t
4242

4343
It's a piece of cake.
4444

45-
1. Add the Nuget Package to your ASP.NET Core web app project
45+
1. Add the Nuget Package to your ASP.NET Core project
4646
```
4747
dotnet add package AspNetStatic
4848
```

0 commit comments

Comments
 (0)