Skip to content

Commit 99956aa

Browse files
committed
Fix markdown lint errors in Blazor docs
1 parent 2fc39a3 commit 99956aa

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/aspire-hosting-blazor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ The proxy then routes `/{prefix}/api-proxy/weatherapi/*` (standalone) or `/api-p
215215

216216
### Client identity in the dashboard
217217

218-
In the hosted model, the server and WASM client share the same resource name (`blazorapp`). To distinguish their telemetry in the dashboard, the hosting layer appends ` (client)` to the `OTEL_SERVICE_NAME` for the WASM client:
218+
In the hosted model, the server and WASM client share the same resource name (`blazorapp`). To distinguish their telemetry in the dashboard, the hosting layer appends the suffix `(client)` to the `OTEL_SERVICE_NAME` for the WASM client:
219219

220220
- `blazorapp` → server-side traces and logs
221221
- `blazorapp (client)` → browser-side traces and logs
@@ -291,7 +291,7 @@ All YARP configuration is emitted as environment variables at orchestration time
291291

292292
### Standalone (per-app, with prefix)
293293

294-
```
294+
```text
295295
# API route — proxies /app/_api/weatherapi/* → weatherapi service
296296
ReverseProxy__Routes__route-app-weatherapi__ClusterId=cluster-weatherapi
297297
ReverseProxy__Routes__route-app-weatherapi__Match__Path=/app/_api/weatherapi/{**catch-all}
@@ -307,7 +307,7 @@ ReverseProxy__Clusters__cluster-otlp-dashboard__Destinations__d1__Address={OTLP_
307307

308308
### Hosted (no prefix)
309309

310-
```
310+
```text
311311
# API route — proxies /_api/weatherapi/* → weatherapi service
312312
ReverseProxy__Routes__route-weatherapi__ClusterId=cluster-weatherapi
313313
ReverseProxy__Routes__route-weatherapi__Match__Path=/_api/weatherapi/{**catch-all}

docs/pr-description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Summary
1+
# Summary
22

33
Adds `Aspire.Hosting.Blazor` — a hosting integration that brings Blazor WebAssembly apps into Aspire orchestration with service discovery, YARP-based API proxying, and OpenTelemetry forwarding.
44

playground/AspireWithBlazorHosted/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ await host.RunAsync();
196196

197197
## Project Structure
198198

199-
```
199+
```text
200200
AspireWithBlazorHosted/
201201
├── AspireWithBlazorHosted.AppHost/ # Aspire orchestrator
202202
│ └── Program.cs # ProxyService + ProxyTelemetry

playground/AspireWithBlazorStandalone/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ await host.RunAsync();
169169
170170
## Project Structure
171171
172-
```
172+
```text
173173
AspireWithBlazorStandalone/
174174
├── AspireWithBlazorStandalone.AppHost/ # Aspire orchestrator
175175
│ └── Program.cs # AddBlazorWasmProject + AddBlazorGateway

0 commit comments

Comments
 (0)