Skip to content

Commit 7722d6a

Browse files
author
naman-msft
committed
updated documentation
1 parent 71fad60 commit 7722d6a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ Not all documentation is suitable for conversion to Exec Docs. Use these filters
4343
```
4444

4545
>**Note:** You can include code blocks of any type in your documentation for human readers, but only the types listed above will be executed by Innovation Engine. Other code block types will be displayed but ignored during execution.
46-
47-
>**Note:** There is a special kind of code block called a "result block" that's used to validate command execution. We'll cover result blocks in detail later in section 11.
4846
4947
2. **Command Execution Limitations**
5048
- **Not supported:**
@@ -102,15 +100,18 @@ Not all documentation is suitable for conversion to Exec Docs. Use these filters
102100
**Example of supported command:**
103101
```markdown
104102
```bash
105-
az group create --name myResourceGroup --location eastus
103+
export RESOURCE_GROUP="myResourceGroup"
104+
export LOCATION="eastus"
105+
az group create --name $RESOURCE_GROUP --location $LOCATION
106106
```
107107
```
108108

109109
**Example of unsupported command:**
110110
```markdown
111111
```bash
112+
export APP_NAME="myApp"
112113
# This requires elevated Graph API permissions and would fail
113-
az ad app create --display-name myApp --native-app
114+
az ad app create --display-name $APP_NAME --native-app
114115
```
115116
```
116117

0 commit comments

Comments
 (0)