diff --git a/src/docs/cli.md b/src/docs/cli.md
index da444289..0122b069 100644
--- a/src/docs/cli.md
+++ b/src/docs/cli.md
@@ -60,45 +60,45 @@ The Polywrap CLI allows you to create a template project in any of these languag
Let's start with creating a new project using the Polywrap CLI:
-
+
- ```shell-session
- polywrap create app typescript my-app
- ```
+```shell-session
+polywrap create app typescript my-app
+```
-
+
-
+
- ```shell-session
- polywrap create app rust my-app
- ```
+```shell-session
+polywrap create app rust my-app
+```
-
+
-
+
- ```shell-session
- polywrap create app python my-app
- ```
+```shell-session
+polywrap create app python my-app
+```
-
+
-
+
- ```shell-session
- polywrap create app android my-app
- ```
+```shell-session
+polywrap create app android my-app
+```
-
+
-
+
- ```shell-session
- polywrap create app ios my-app
- ```
+```shell-session
+polywrap create app ios my-app
+```
-
+
This will create a basic application in the language of your choice.
@@ -111,45 +111,45 @@ In order for the Polywrap CLI to know what kind of project it's working with, it
It has a structure similar to this:
-
+
- ```yaml title="polywrap.yaml"
- $snippet: cli-ts-app-manifest
- ```
+```yaml title="polywrap.yaml"
+$snippet: cli-ts-app-manifest
+```
-
+
-
+
- ```yaml title="polywrap.yaml"
- $snippet: cli-rust-app-manifest
- ```
+```yaml title="polywrap.yaml"
+$snippet: cli-rust-app-manifest
+```
-
+
-
+
- ```yaml title="polywrap.yaml"
- $snippet: cli-py-app-manifest
- ```
+```yaml title="polywrap.yaml"
+$snippet: cli-py-app-manifest
+```
-
+
-
+
- ```yaml title="polywrap.yaml"
- $snippet: cli-kt-app-manifest
- ```
+```yaml title="polywrap.yaml"
+$snippet: cli-kt-app-manifest
+```
-
+
-
+
- ```yaml title="polywrap.yaml"
- $snippet: cli-swift-app-manifest
- ```
+```yaml title="polywrap.yaml"
+$snippet: cli-swift-app-manifest
+```
-
+
The `format` property denotes the version of the Polywrap Manifest format. Under `project`, you can set the `name` field to the name of your application, while the `type` field describes the project type, thus letting the CLI know how to interact with the application code.