Skip to content

Commit 65d32b1

Browse files
committed
Updates
1 parent c8e145e commit 65d32b1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/azure-web-pubsub/tutorial-build-chat.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ First let's create an ASP.NET Core web app in a `chatapp` folder.
113113
</html>
114114
```
115115

116-
You can test the server by running `dotnet run --urls http://localhost:8080` and access [http://localhost:8080/index.html](http://localhost:8080/index.html) in the browser.
116+
You can test the server by running `dotnet run --urls http://localhost:8080` and access `http://localhost:8080/index.html` in the browser.
117117

118118
# [JavaScript](#tab/javascript)
119119

@@ -152,7 +152,7 @@ First let's create an express web app in a `chatapp` folder.
152152
</html>
153153
```
154154
155-
You can test the server by running `node server` and access [http://localhost:8080](http://localhost:8080) in the browser.
155+
You can test the server by running `node server` and access `http://localhost:8080` in the browser.
156156
157157
# [Java](#tab/java)
158158
@@ -230,7 +230,7 @@ We use the [Javalin](https://javalin.io/) web framework to host the web pages an
230230
</html>
231231
```
232232
233-
You can test the server by running the following command under the directory containing the *pom.xml* file, and access http://localhost:8080 in browser.
233+
You can test the server by running the following command under the directory containing the *pom.xml* file, and access `http://localhost:8080` in browser.
234234
235235
```bash
236236
mvn compile & mvn package & mvn exec:java -Dexec.mainClass="com.webpubsub.tutorial.App" -Dexec.cleanupDaemonThreads=false
@@ -473,9 +473,9 @@ mvn compile & mvn package & mvn exec:java -Dexec.mainClass="com.webpubsub.tutori
473473
474474
First install Azure Web PubSub SDK.
475475
476-
```bash
477-
pip install azure-messaging-webpubsubservice
478-
```
476+
```bash
477+
pip install azure-messaging-webpubsubservice
478+
```
479479
480480
Now let's add a `/negotiate` API to the server to generate the token.
481481
@@ -526,7 +526,7 @@ Rerun the server using `python server.py`.
526526
527527
---
528528
529-
You can test this API by accessing [http://localhost:8080/negotiate?id=user1](http://localhost:8080/negotiate?id=user1) and it gives you the full url of the Azure Web PubSub with an access token.
529+
You can test this API by accessing `http://localhost:8080/negotiate?id=user1` and it gives you the full url of the Azure Web PubSub with an access token.
530530
531531
## Handle events
532532
@@ -879,7 +879,7 @@ The complete code sample of this tutorial can be found [here][code-python].
879879
880880
---
881881
882-
Open [http://localhost:8080/index.html](http://localhost:8080/index.html). You can input your user name and start chatting.
882+
Open `http://localhost:8080/index.html`. You can input your user name and start chatting.
883883
884884
<!-- Adding Lazy Auth part with `connect` handling -->
885885

0 commit comments

Comments
 (0)