Skip to content

Commit d42a559

Browse files
jtvioletclaude
andcommitted
fix: resolve MDX compilation errors in threatprevention docs
Fixed 16 MDX compilation errors across 14 files: - Wrapped HTML-like tags in backticks (Template, userId, userName, etc.) - Fixed malformed expressions and unclosed braces - Escaped JSX special characters (<, >, {, }) - Fixed invalid syntax in command examples (ipconfig, ifconfig) All threatprevention documentation now builds successfully. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent c8658f7 commit d42a559

File tree

15 files changed

+473
-34
lines changed

15 files changed

+473
-34
lines changed

docs/threatprevention/threatprevention/admin/agents/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The upper-right corner of the data grid displays the Agent tally, indicating the
5252
- Available Version – Latest Agent version available in Threat Prevention
5353
- ADMonitor Version – The installed SI.ActiveDirectoryMonitor.dll version
5454

55-
{commonly known as ADMonitor DLL). The Agent and the ADMonitor DLL should have the same major/minor version, such as 7.5.x.x, where x.x for the DLL can be equal or higher than that of the Agent. Example: Agent 7.5.0.123 and DLL 7.5.0.777
55+
(commonly known as ADMonitor DLL). The Agent and the ADMonitor DLL should have the same major/minor version, such as 7.5.x.x, where x.x for the DLL can be equal or higher than that of the Agent. Example: Agent 7.5.0.123 and DLL 7.5.0.777
5656
- UTC Offset – Local server time zone relationship to the Universal Time (UTC)
5757
- Last Events – Number of events reported by the Agent in the last notification to the Enterprise Manager
5858
- Events In Queue – Count of events the Agent is waiting to send to the Enterprise Manager

docs/threatprevention/threatprevention/admin/navigation/rightclickmenus.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ From a Folder node, the right-click menu contains these commands.
4949

5050
__NOTE:__ If the logged in user does not have the __Manage Policies__ permissions for a protected policy, these options are grayed-out. See the [Policies Interface](/docs/threatprevention/threatprevention/admin/policies/overview.md) topic for additional information on protection.
5151

52-
<Policy Name> and <Template Name> Nodes
52+
`<Policy Name>` and `<Template Name>` Nodes
5353

5454
From the node for a specific policy or template, the right-click menu contains these commands.
5555

56-
![<Policy Name> and <Template Name> Nodes - Right-click Menu](/img/product_docs/threatprevention/threatprevention/admin/navigation/individualpolicytemplatenode.png)
56+
![`<Policy Name>` and `<Template Name>` Nodes - Right-click Menu](/img/product_docs/threatprevention/threatprevention/admin/navigation/individualpolicytemplatenode.png)
5757

5858
| Right-Click Command | Description |
5959
| --- | --- |
@@ -76,11 +76,11 @@ From the Tags node, the right-click menu contains these commands.
7676
| --- | --- |
7777
| Refresh | Refreshes the tag folders to display any new tags or any templates newly associated with an existing tag |
7878

79-
<Template Name> Node under Tags
79+
`<Template Name>` Node under Tags
8080

8181
From the template within a folder under the Tags node, the right-click menu contains these commands.
8282

83-
![<Template Name> Node under Tags - Right-click menu](/img/product_docs/threatprevention/threatprevention/admin/navigation/templatenodeundertags.png)
83+
![Template Name Node under Tags - Right-click menu](/img/product_docs/threatprevention/threatprevention/admin/navigation/templatenodeundertags.png)
8484

8585
| Right-Click Command | Description |
8686
| --- | --- |

docs/threatprevention/threatprevention/admin/policies/eventtype/gposettingchanges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ The comparison operator is displayed in green text. To change it, click on it to
8383

8484
Filter Criteria
8585

86-
Specify a filter criteria into the <enter a value> textbox.
86+
Specify a filter criteria into the `<enter a value>` textbox.

docs/threatprevention/threatprevention/admin/policies/eventtype/window/selectdomainsservers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ The Select Domains And Servers window provides a list of available domains and s
44

55
![Select Domains and Servers Window](/img/product_docs/threatprevention/threatprevention/admin/policies/eventtype/window/selectdomainsservers.png)
66

7-
- Select the domain or server from a list on the left and click the __Include__ (>>) button. The selection moves to the Included Domains And Servers list. Add as many domains and/or servers to the list as desired.
8-
- Use the __Remove__ (<<) button to return the selected item to the list on the left.
7+
- Select the domain or server from a list on the left and click the __Include__ (`>>`) button. The selection moves to the Included Domains And Servers list. Add as many domains and/or servers to the list as desired.
8+
- Use the __Remove__ (`<<`) button to return the selected item to the list on the left.
99
- When the Included Domains And Servers list is complete, click __OK__.
1010

1111
The selection is displayed in the appropriate box of the Domains/Servers filter.

docs/threatprevention/threatprevention/eperestsite/accountmanagement.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Example
4444

4545
![POST api/account/create](/img/product_docs/threatprevention/threatprevention/eperestsite/create.png)
4646

47-
## GET api/account/user/<userId>
47+
## GET api/account/user/`<userId>`
4848

4949
This API returns information about an internal account stored in the EpeUsers database with the User Id value as the input parameter.
5050

@@ -54,9 +54,9 @@ Authentication Type – Basic authentication
5454

5555
Example
5656

57-
![GET api/account/user/<userId>](/img/product_docs/threatprevention/threatprevention/eperestsite/userid.png)
57+
![GET api/account/user/userId](/img/product_docs/threatprevention/threatprevention/eperestsite/userid.png)
5858

59-
## GET api/account/user/<userName>
59+
## GET api/account/user/`<userName>`
6060

6161
This API returns information about an internal account stored in the EpeUsers database with the User Name value as the input parameter.
6262

@@ -66,9 +66,9 @@ Authentication Type – Basic authentication
6666

6767
Example
6868

69-
![GET api/account/user/<userName>](/img/product_docs/threatprevention/threatprevention/eperestsite/username.png)
69+
![GET api/account/user/userName](/img/product_docs/threatprevention/threatprevention/eperestsite/username.png)
7070

71-
## DELETE api/account/delete?userName=<username>
71+
## DELETE api/account/delete?userName=`<username>`
7272

7373
This API deletes an internal account stored in the EpeUsers database with the User Name value as the input parameter.
7474

@@ -78,6 +78,6 @@ Authentication Type – Basic authentication
7878

7979
Example
8080

81-
![DELETE api/account/delete?userName=<username>](/img/product_docs/strongpointfornetsuite/integrations/delete.png)
81+
![DELETE api/account/delete?userName=username](/img/product_docs/strongpointfornetsuite/integrations/delete.png)
8282

8383
To verify the result of this operation, you can use “GET api/account/users” or check the contents of the [EpeUsers].[dbo].[AspNetUsers] database table.

docs/threatprevention/threatprevention/install/firstlaunch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Follow the steps to launch Threat Prevention for the first time.
66

77
__Step 1 –__ On first launch, the Netwrix Threat Prevention Licensing Configuration window is displayed to the first Administration Console administrator, showing a license key warning:
88

9-
- Product license will expire in <number> days. Please contact your Netwrix representative for a new license.
9+
- Product license will expire in `<number>` days. Please contact your Netwrix representative for a new license.
1010

1111
This warning always displays when the organization’s license is within 14 days of expiring. Click __OK__. See the [Import the License](/docs/threatprevention/threatprevention/install/licenseimport.md) topic for licensing the product.
1212

docs/threatprevention/threatprevention/reportingmodule/configuration/integrations/authenticationprovider/radius.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ Configure the following settings for a RADIUS provider on the Configuration tab
3030
- User Name Format Type – Active Directory attribute or attributes that will be sent to the RADIUS authentication provider to identify the user. Some common identification attributes are available in the drop-down list. If necessary, a custom option is also provided. This option instructs the application to send a custom value to the RADIUS provider based on the user's Active Directory attribute, supplied in the Custom Name Format field.
3131
- Custom Name Format – This field appears when the Custom User Name Format Type is selected. It has a unique syntax as follows:
3232

33-
- Active Directory Attribute: {attributename}
33+
- Active Directory Attribute: `{attributename}`
3434

35-
- Example – {firstname}\_{lastname}
36-
- First Character(s) of an Active Directory Attribute: {3:AttributeName} – Where "3" is the number of characters to select
35+
- Example – `{firstname}\_{lastname}`
36+
- First Character(s) of an Active Directory Attribute: `{3:AttributeName}` – Where "3" is the number of characters to select
3737

38-
- Example – {1:firstname}\_{lastname}
39-
- Last Character(s) of an Active Directory Attribute: {AttributeName:3} – Where "3" is the number of characters to select
38+
- Example – `{1:firstname}\_{lastname}`
39+
- Last Character(s) of an Active Directory Attribute: `{AttributeName:3}` – Where "3" is the number of characters to select
4040

41-
- Example – {firstname}\_{telephoneNumber:4}
41+
- Example – `{firstname}\_{telephoneNumber:4}`
4242
- Text values can be hard coded to send a static text value for each user:
4343

44-
- Example – MyCompany\_{lastname}
44+
- Example – `MyCompany\_{lastname}`
4545
- Max Retries – The maximum number of times to attempt reconnecting to the RADIUS proxy if unable to connect
4646
- Timeouts (in seconds) – The default timeout value for RADIUS connection and authentication requests. The default value is 60 seconds.
4747

docs/threatprevention/threatprevention/reportingmodule/configuration/integrations/tagmanagement.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ __Step 4 –__ Use the Type drop-down menu to apply the desired object type filt
108108

109109
__Step 5 –__ In the Untagged Items box, check the box to the left of the desired object(s).
110110

111-
__Step 6 –__ Click the arrow (>) between the Untagged Items box and the Tagged Items box to add the tag to the selected object(s).
111+
__Step 6 –__ Click the arrow (`>`) between the Untagged Items box and the Tagged Items box to add the tag to the selected object(s).
112112

113113
The tag is applied to the selected objects.
114114

@@ -128,6 +128,6 @@ __Step 4 –__ Use the Type drop-down menu to apply the desired object type filt
128128

129129
__Step 5 –__ In the Tagged Items box, check the box to the left of the desired object(s).
130130

131-
__Step 6 –__ Click the arrow (<) between the Untagged Items box and the Tagged Items box to remove the tag from the selected object(s).
131+
__Step 6 –__ Click the arrow (`<`) between the Untagged Items box and the Tagged Items box to remove the tag from the selected object(s).
132132

133133
The tag is removed from the selected objects.

docs/threatprevention/threatprevention/reportingmodule/investigations/options/export.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The name of the respective investigation is displayed as a link. Click it to vie
6262

6363
__Step 3 –__ By default the schedule is enabled. You can disable it with the toggle button by the window name.
6464

65-
__Step 4 –__ Modify the text in the Export name field as desired. The default name is: Export for {{Investigation\_Name}}. This variable will be replaced with the name of the investigation. The + button opens a variable menu for the field.
65+
__Step 4 –__ Modify the text in the Export name field as desired. The default name is: Export for `{{Investigation\_Name}}`. This variable will be replaced with the name of the investigation. The + button opens a variable menu for the field.
6666

6767
__Step 5 –__ Select a shared folder from the __Publish folder__ drop-down menu. Only folders configured on the Folder Settings page of the Integrations interface will be listed here.
6868

@@ -74,7 +74,7 @@ __Step 7 –__ Set the start date, time, and timezone for the selected frequency
7474
- Time – This field opens a clock. You can also type a date in the field.
7575
- Timezone – This field opens a drop-down menu. Select the desired timezone.
7676

77-
__Step 8 –__ Set the file name in the File name field. The default name is: {{Investigation\_Name}}\_{{Date}}. This variable will be replaced with the name of the investigation. The + button opens a variable menu for the field.
77+
__Step 8 –__ Set the file name in the File name field. The default name is: `{{Investigation\_Name}}`\_{{Date}}. This variable will be replaced with the name of the investigation. The + button opens a variable menu for the field.
7878

7979
__Step 9 –__ Select the file format for the export from the drop-down menu: CSV, PDF, JSON, Excel Viewing.
8080

docs/threatprevention/threatprevention/reportingmodule/investigations/options/subscription.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The name of the respective investigation is displayed as a link. Click it to vie
2020

2121
__Step 2 –__ By default the subscription is enabled. You can disable it with the toggle button by the window name.
2222

23-
__Step 3 –__ Modify the subscription name as desired in the Subscription name field. The default name is: Subscription for {{Investigation\_Name}}. This variable will be replaced with the name of the investigation. The + button opens a variable menu for the field.
23+
__Step 3 –__ Modify the subscription name as desired in the Subscription name field. The default name is: Subscription for `{{Investigation\_Name}}`. This variable will be replaced with the name of the investigation. The + button opens a variable menu for the field.
2424

2525
__Step 4 –__ Enter the email addresses for the recipients of this report subscription in the Recipients box.
2626

@@ -34,9 +34,9 @@ __Step 6 –__ Set a frequency. Options in the Frequency drop-down menu are: Onc
3434

3535
__Step 7 –__ There are two additional settings in the Advanced Options section. Click the arrow to expand this section.
3636

37-
__Step 8 –__ Modify the email subject line in the Email subject field as desired. The default name is: Subscription to{{Investigation\_Name}} at {{Date}}. These variables will be replaced with the name of the investigation and the date of the report. The + button opens a variable menu for the field.
37+
__Step 8 –__ Modify the email subject line in the Email subject field as desired. The default name is: Subscription to`{{Investigation\_Name}}` at {{Date}}. These variables will be replaced with the name of the investigation and the date of the report. The + button opens a variable menu for the field.
3838

39-
__Step 9 –__ Set the file name in the File name field. The default name is: {{Investigation\_Name}}\_{{Date}}. This variable will be replaced with the name of the investigation. The + button opens a variable menu for the field.
39+
__Step 9 –__ Set the file name in the File name field. The default name is: `{{Investigation\_Name}}`\_{{Date}}. This variable will be replaced with the name of the investigation. The + button opens a variable menu for the field.
4040

4141
__Step 10 –__ Select the file format for the export from the drop-down menu: CSV, PDF, JSON, Excel Viewing.
4242

0 commit comments

Comments
 (0)