Skip to content

Commit 2ce0f6d

Browse files
NatasaKraljMarkvanMents
authored andcommitted
Run markdownlint-cli2 on docs to find (and correct) linting errors.
1 parent eb8af68 commit 2ce0f6d

48 files changed

Lines changed: 200 additions & 200 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-10/extensibility-api/csharp/extensibility-api-howtos/add-menu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ You can add a `MenuSeparator` to a menu using the `Separator` property. The opti
9898

9999
#### Enabling and Disabling Menus
100100

101-
Menus are enabled by default. To disable a menu, set its `IsEnabled` property to `false`.
101+
Menus are enabled by default. To disable a menu, set its `IsEnabled` property to `false`.

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-10/extensibility-api/csharp/extensibility-api-howtos/build-todo-example-extension.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -452,8 +452,7 @@ To store to-do data on disk, create model classes that represent individual item
452452
}
453453
```
454454

455-
456-
### Create the To-do List Model
455+
### Create the To-do List Model
457456

458457
1. Add another class file named *ToDoListModel.cs*.
459458
2. Replace the contents of this file with the following code:
@@ -757,7 +756,7 @@ function postMessage(message, data) {
757756
}
758757
```
759758

760-
2. Initialize message handling and respond to incoming messages:
759+
1. Initialize message handling and respond to incoming messages:
761760

762761
```javascript
763762
// Register message handler.
@@ -944,4 +943,4 @@ Use a command-line flag to enable extensions:
944943
1. Open the Studio Pro Installation folder.
945944
2. From the command-line, run: `.\studiopro.exe --enable-extension-development`.
946945

947-
This will launch Studio Pro and load your extension. You can now access it from the **View** > **Todo** menu item.
946+
This will launch Studio Pro and load your extension. You can now access it from the **View** > **Todo** menu item.

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-10/extensibility-api/csharp/extensibility-api-howtos/create-menu-extension.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can download the example in this how-to in [this GitHub repository](https://
2626
{ "mx_extensions": [ "<name_of_your_project>.dll" ] }
2727
```
2828

29-
3. For the `manifest.json` file, right-click **Solution Explorer** > **Properties** and change the **Copy to Output Directory** property to **Copy always**.
29+
4. For the `manifest.json` file, right-click **Solution Explorer** > **Properties** and change the **Copy to Output Directory** property to **Copy always**.
3030

3131
## Creating a Test Mendix App
3232

@@ -114,4 +114,4 @@ You can access reusable .NET libraries via [NuGet](https://www.nuget.org/) Follo
114114
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
115115
```
116116

117-
3. Use the **Manage NuGet Packages** to add a dependency.
117+
3. Use the **Manage NuGet Packages** to add a dependency.

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-10/extensibility-api/csharp/extensibility-api-howtos/create-microflow-service.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ It returns a list of `IMicroflowParameterObject`, which includes:
116116
* Description
117117
* `DataType`
118118

119-
120119
```csharp
121120
IReadOnlyList<IMicroflowParameterObject> parameters = _microflowService.GetParameters(microflow);
122121
```

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-10/extensibility-api/csharp/extensibility-api-howtos/create-microflows-calculations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ You can also see that the `DataType` of both parameters is integer.
165165

166166
{{< figure src="/attachments/apidocs-mxsdk/apidocs/extensibility-api/multiplication-microflow.png" >}}
167167

168-
### Addition Microflow
168+
### Addition Microflow
169169

170170
To create a microflow that performs addition between two decimal values, use the code below:
171171

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-10/extensibility-api/csharp/extensibility-api-howtos/create-modal-web-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,4 @@ This code injects your controller class into the `MyMenuExtension` class. It add
170170

171171
{{% alert type="info" %}}
172172
In this example, the `currentApp` parameter is required if the dialog needs to interact with the model. Additionally, `WebServerBaseUrl` is crucial; without the base path, navigating to the route defined in the web server extension would not be possible.
173-
{{% /alert %}}
173+
{{% /alert %}}

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-10/extensibility-api/csharp/extensibility-api-howtos/interact-with-model-api.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ weight: 11
77

88
## Introduction
99

10-
Once you have created basic extensions, you may want to interact with the Studio Pro model to make changes to your app. The Model API enables this functionality and is exposed via the` Mendix.StudioPro.ExtensionsAPI.Model` namespace.
10+
Once you have created basic extensions, you may want to interact with the Studio Pro model to make changes to your app. The Model API enables this functionality and is exposed via the`Mendix.StudioPro.ExtensionsAPI.Model` namespace.
1111

1212
## Gaining Access to the Mendix Model SDK
1313

@@ -25,7 +25,6 @@ Any modification to the model must be done within a transaction; otherwise, a `S
2525

2626
Transactions group changes, but do not provide a way to isolate them. Changes to a model are immediately visible to all code interacting with the model. When transaction is rolled back or is undone by a user, all included changes are reverted.
2727

28-
2928
## Start a Transaction
3029

3130
To create transaction, call [`IModel.StartTransaction`](https://github.com/mendix/ExtensionAPI-Samples/blob/main/API%20Reference/Mendix.StudioPro.ExtensionsAPI.Model/IModel/StartTransaction.md). This method returns a transaction object that implements [`ITransaction`](https://github.com/mendix/ExtensionAPI-Samples/blob/main/API%20Reference/Mendix.StudioPro.ExtensionsAPI.Model/ITransaction.md).
@@ -61,4 +60,4 @@ using (var transaction = model.StartTransaction("add entity"))
6160
var copyEntity = CurrentApp.Copy(entity);
6261
transaction.Commit();
6362
}
64-
```
63+
```

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-10/extensibility-api/web/get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ You can explore the extension to understand what it does when it is installed. D
6464
});
6565
```
6666

67-
2. Line 14 opens a tab
67+
1. Line 14 opens a tab
6868

6969
```typescript
7070
// Open a tab when the menu item is clicked

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-10/extensibility-api/web/web-extensions-howtos/dockable-pane-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ You will close your pane using a new menu item. Follow the steps below:
259259
{ menuId: "myextension.HideDockMenuItem", caption: "Hide dock pane" },
260260
```
261261

262-
2. Alter the event handler for the new menu at the end of the loaded method:
262+
1. Alter the event handler for the new menu at the end of the loaded method:
263263

264264
```typescript
265265
// Open a tab when the menu item is clicked

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-11/extensibility-api/csharp/extensibility-api-howtos/build-todo-example-extension.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ To store to-do data on disk, create model classes that represent individual item
452452
}
453453
```
454454

455-
### Create the To-do List Model
455+
### Create the To-do List Model
456456

457457
1. Add another class file named *ToDoListModel.cs*.
458458
2. Replace the contents of this file with the following code:
@@ -756,7 +756,7 @@ function postMessage(message, data) {
756756
}
757757
```
758758

759-
2. Initialize message handling and respond to incoming messages:
759+
1. Initialize message handling and respond to incoming messages:
760760

761761
```javascript
762762
// Register message handler.

0 commit comments

Comments
 (0)