Skip to content

Commit 0b0345d

Browse files
committed
fix indents and spacing in pivots
1 parent 96d35bc commit 0b0345d

File tree

2 files changed

+26
-12
lines changed

2 files changed

+26
-12
lines changed

articles/azure-functions/how-to-create-function-azure-cli.md

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Completing this quickstart incurs a small cost of a few USD cents or less in you
1717

1818
Before you begin, you must have the following:
1919

20+
+ An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
21+
2022
[!INCLUDE [functions-requirements-azure-cli](../../includes/functions-requirements-azure-cli.md)]
2123

2224
+ The [`jq` command line JSON processor](https://jqlang.org/download/), used to parse JSON output, and is also available in Azure Cloud Shell.
@@ -29,31 +31,41 @@ In Azure Functions, a function project is a container for one or more individual
2931
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
3032
1. In a terminal or command prompt, run this [`func init`](./functions-core-tools-reference.md#func-init) command to create a function app project in the current folder:
3133
::: zone-end
32-
::: zone pivot="programming-language-csharp"
34+
::: zone pivot="programming-language-csharp"
35+
3336
```console
3437
func init --worker-runtime dotnet-isolated
3538
```
36-
::: zone-end
37-
::: zone pivot="programming-language-javascript"
39+
40+
::: zone-end
41+
::: zone pivot="programming-language-javascript"
42+
3843
```console
3944
func init --worker-runtime node --language javascript
4045
```
41-
::: zone-end
42-
::: zone pivot="programming-language-powershell"
46+
47+
::: zone-end
48+
::: zone pivot="programming-language-powershell"
49+
4350
```console
4451
func init --worker-runtime powershell
4552
```
46-
::: zone-end
47-
::: zone pivot="programming-language-python"
53+
54+
::: zone-end
55+
::: zone pivot="programming-language-python"
56+
4857
```console
4958
func init --worker-runtime python
5059
```
51-
::: zone-end
52-
::: zone pivot="programming-language-typescript"
60+
61+
::: zone-end
62+
::: zone pivot="programming-language-typescript"
63+
5364
```console
5465
func init --worker-runtime node --language typescript
5566
```
56-
::: zone-end
67+
68+
::: zone-end
5769
::: zone pivot="programming-language-java"
5870
<!--- The Maven archetype requires it's own create flow...-->
5971
1. In an empty folder, run this `mvn` command to generate the code project from an Azure Functions [Maven archetype](https://maven.apache.org/guides/introduction/introduction-to-archetypes.html):
@@ -105,7 +117,9 @@ In Azure Functions, a function project is a container for one or more individual
105117
::: zone-end
106118

107119
The project root folder contains various files for the project, including configurations files named [local.settings.json](functions-develop-local.md#local-settings-file) and [host.json](functions-host-json.md). Because _local.settings.json_ can contain secrets downloaded from Azure, the file is excluded from source control by default in the _.gitignore_ file.
108-
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
120+
121+
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
122+
109123
2. Use this `func new` command to add a function to your project:
110124

111125
```console

includes/functions-create-azure-resources-flex-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Use the following commands to create these items. Both Azure CLI and PowerShell
148148
149149
+ `<STORAGE_NAME>`: the name of the account you used in the previous step.
150150
+ `<REGION>`: your region.
151-
+ `<APP_NAME>`: a globally unique name appropriate to you. The `<APP_NAME>` is also the default DNS domain for the function app.
151+
+ `<APP_NAME>`: a globally unique name appropriate to you. The `<APP_NAME>` is also the default DNS domain for the function app.
152152
+ `<USER_NAME>`: the name of the user-assigned managed identity.
153153
+ `<LANGUAGE_VERSION>`: use the [supported language stack version](../articles/azure-functions/supported-languages.md) you verified locally.
154154

0 commit comments

Comments
 (0)