Skip to content

Commit 2b0cc3b

Browse files
committed
Fix invalid xmlnode references
1 parent 4c18d66 commit 2b0cc3b

17 files changed

+18
-18
lines changed

functions/XML/xmlCopyFile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ shared: &shared
1212
parameters:
1313
- name: 'nodeToCopy'
1414
type: 'xmlnode'
15-
description: "The [xmlnode](/xmlnode) that is to be copied to a new document."
15+
description: "The [[xmlnode]] that is to be copied to a new document."
1616
- name: 'newFilePath'
1717
type: 'string'
1818
description: |

functions/XML/xmlCreateChild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ shared: &shared
1414
description: 'The type of the child node that will be created.'
1515
returns:
1616
description: |
17-
Returns the created [xmlnode](/xmlnode) if successful, **false** otherwise.
17+
Returns the created [[xmlnode]] if successful, **false** otherwise.
1818
values:
1919
- type: 'xmlnode|false'
2020
name: 'xmlnode'

functions/XML/xmlCreateFile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ shared: &shared
2222
description: 'The name of the root node in the XML document.'
2323
returns:
2424
description: |
25-
Returns the root [xmlnode](/xmlnode) object of the new XML file if successful, or **false** otherwise.
25+
Returns the root [[xmlnode]] object of the new XML file if successful, or **false** otherwise.
2626
values:
2727
- type: 'xmlnode|false'
2828
name: 'xmlnode'

functions/XML/xmlDestroyNode.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ shared: &shared
88
parameters:
99
- name: 'theXMLNode'
1010
type: 'xmlnode'
11-
description: "The [xmlnode](/xmlnode) you want to destroy."
11+
description: "The [[xmlnode]] you want to destroy."
1212
returns:
1313
description: |
1414
Returns **true** if the xml node was successfully destroyed, **false** otherwise.

functions/XML/xmlFindChild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ shared: &shared
1818
This is the 0-based index of the node you wish to find. For example, to find the 5th subnode with a particular name, you would use 4 as the index value. To find the first occurence, use 0.
1919
returns:
2020
description: |
21-
Returns an [xmlnode](/xmlnode) if the node was found, **false** otherwise.
21+
Returns an [[xmlnode]] if the node was found, **false** otherwise.
2222
values:
2323
- type: 'xmlnode|false'
2424
name: 'xmlnode'

functions/XML/xmlLoadFile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ shared: &shared
1717
description: By default, the XML file is opened with reading and writing access. You can specify true for this parameter if you only need reading access.
1818
returns:
1919
description: |
20-
Returns the root [xmlnode](/xmlnode) object of an xml file if successful, or **false** otherwise.
20+
Returns the root [[xmlnode]] object of an xml file if successful, or **false** otherwise.
2121
values:
2222
- type: 'xmlnode|false'
2323
name: 'xmlnode'

functions/XML/xmlLoadString.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ shared: &shared
1313
A string containing XML data.
1414
returns:
1515
description: |
16-
Returns the root [xmlnode](/xmlnode) object of an xml string if successful, or **false** otherwise (invalid XML string).
16+
Returns the root [[xmlnode]] object of an xml string if successful, or **false** otherwise (invalid XML string).
1717
values:
1818
- type: 'xmlnode|false'
1919
name: 'xmlnode'

functions/XML/xmlNodeGetAttribute.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ shared: &shared
99
parameters:
1010
- name: 'node'
1111
type: 'xmlnode'
12-
description: The [xmlnode](/xmlnode) from which you wish to return the attribute.
12+
description: The [[xmlnode]] from which you wish to return the attribute.
1313
- name: 'name'
1414
type: 'string'
1515
description: The name of the attribute.

functions/XML/xmlNodeGetAttributes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ shared: &shared
99
parameters:
1010
- name: 'node'
1111
type: 'xmlnode'
12-
description: The [xmlnode](/xmlnode) to get the attributes of.
12+
description: The [[xmlnode]] to get the attributes of.
1313
returns:
1414
description: |
1515
If successful, returns a [[table]] with as keys the names of the attributes and as values the corresponding attribute values. If the node has no attributes, returns an empty table. In case of failure, returns **false**.

functions/XML/xmlNodeGetChildren.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ shared: &shared
99
parameters:
1010
- name: 'parentNode'
1111
type: 'xmlnode'
12-
description: This is an [xmlnode](/xmlnode) that you want to find the child node under.
12+
description: This is an [[xmlnode]] that you want to find the child node under.
1313
- name: 'index'
1414
type: 'int'
1515
default: 'nil'

0 commit comments

Comments
 (0)