You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -43,8 +43,6 @@ Not all documentation is suitable for conversion to Exec Docs. Use these filters
43
43
```
44
44
45
45
>**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.
48
46
49
47
2.**Command Execution Limitations**
50
48
-**Not supported:**
@@ -102,15 +100,18 @@ Not all documentation is suitable for conversion to Exec Docs. Use these filters
102
100
**Example of supported command:**
103
101
```markdown
104
102
```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
106
106
```
107
107
```
108
108
109
109
**Example of unsupported command:**
110
110
```markdown
111
111
```bash
112
+
export APP_NAME="myApp"
112
113
# 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
0 commit comments