diff --git a/docs/serving/samples/knative-routing-go/README.md b/docs/serving/samples/knative-routing-go/README.md
index 329da2d25..409126140 100644
--- a/docs/serving/samples/knative-routing-go/README.md
+++ b/docs/serving/samples/knative-routing-go/README.md
@@ -220,23 +220,31 @@ kubectl get VirtualService entry-route --output yaml
     ```
 
 * Send a request to the Search service:
+
     ```shell
     curl http://${GATEWAY_IP}/search --header "Host: example.com"
     ```
+
     or
+
     ```shell
     curl http://${GATEWAY_IP}/search --header "Host: <YOUR_DOMAIN_NAME>"
     ```
+
     for the case using your own domain.
 
-    * Send a request to the Login service:
+* Send a request to the Login service:
+
     ```shell
     curl http://${GATEWAY_IP}/login --header "Host: example.com"
     ```
+
     or
+
     ```shell
     curl http://${GATEWAY_IP}/login --header "Host: <YOUR_DOMAIN_NAME>"
     ```
+
     for the case using your own domain.
 
 ## How It Works