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: docs/xml-tools/sorting-filtering-and-grouping-xml-schema-explorer.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,6 @@ This topic describes the options that are available through the **Sorting, Filte
73
73
74
74
The **Document Order** option is available when the **Show Schema Files** option is selected. When **Document Order** is selected, global nodes are displayed in the order in which they appear in the schema file.
75
75
76
-
## Persisting sort/Filter options
76
+
## Persisting sort/filter options
77
77
78
78
The sorting, filtering, and grouping options are saved to the registry for each user, no matter which solution or files were open when the settings were changed.
Copy file name to clipboardExpand all lines: docs/xml-tools/walkthrough-using-xml-editor-features.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ manager: douge
11
11
ms.workload:
12
12
- "multiple"
13
13
---
14
-
# Walkthrough: Using XML editor features
14
+
# Walkthrough: Use XML editor features
15
15
16
16
The steps in this walkthrough show you how to create a new XML document. The walkthrough also uses some of the features of the XML Editor that make it valuable for XML authoring.
17
17
@@ -66,23 +66,23 @@ The steps in this walkthrough show you how to create a new XML document. The wal
66
66
67
67
5. Type `>` to close the tag.
68
68
69
-
6. The editor adds the end tag. The end tag is added with a wavy underline indicating a validation error. The **ToolTip** displays the message: The element 'employee' has incomplete content. Expected 'ID'.
69
+
6. The editor adds the end tag. The end tag is added with a wavy underline indicating a validation error. The **ToolTip** displays the message: **The element 'employee' has incomplete content. Expected 'ID'**.
70
70
71
71
7. Type `<` and select **ID** from the member list. Then type `>`.
72
72
73
73
The editor adds the XML element, `<ID></ID>`, and positions the cursor after the ID start tag.
74
74
75
75
8. Type **abc**.
76
76
77
-
The **abc** text has a wavy underline. The **ToolTip** displays the message: The 'ID' element has an invalid value according to its data type.
77
+
The **abc** text has a wavy underline. The **ToolTip** displays the message: **The 'ID' element has an invalid value according to its data type**.
78
78
79
79
9. Right-click on the ID element and select **Go To Definition**.
80
80
81
81
The editor opens the *hireDate.xsd* file in a new document window and positions the cursor on the ID schema element definition.
82
82
83
83
10. Return to the XML file, and replace the **abc** text with **123**.
84
84
85
-
The wavy underline and **ToolTip** are cleared under the ID element value. The **ToolTip** for the employee end tag now displays the message: The element 'employee' has incomplete content. Expected 'hire-date'.
85
+
The wavy underline and **ToolTip** are cleared under the ID element value. The **ToolTip** for the employee end tag now displays the message: **The element 'employee' has incomplete content. Expected 'hire-date'**.
86
86
87
87
11. Place the cursor after the ID end tag, type in `<`, select **hire-date** from the member list, and then type in `>`.
88
88
@@ -104,7 +104,7 @@ The steps in this walkthrough show you how to create a new XML document. The wal
104
104
105
105
2. Enter the file name and location for the XML document and click **Save**.
106
106
107
-
## *hireDate.xsd* file
107
+
## hireDate.xsd file
108
108
The following schema file is used by the walkthrough.
Copy file name to clipboardExpand all lines: docs/xml-tools/walkthrough-using-xslt-hierarchy.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ author: gewarren
8
8
ms.author: gewarren
9
9
manager: douge
10
10
---
11
-
# Walkthrough: Using XSLT hierarchy
11
+
# Walkthrough: Use XSLT hierarchy
12
12
13
13
The XSLT Hierarchy tool simplifies many XML development tasks. An XSLT style sheet often uses `includes` and `imports` instructions. Compilation starts from the principal style sheet, but when you see an error as a result of compiling an XSLT style sheet, the error may come from a different source than the principal style sheet. Fixing the error or editing the style sheet may require access to included or imported style sheets. Stepping through the style sheet in the debugger may open included and imported style sheets, and you may want to add a breakpoint at some point in one or more of the included style sheets.
14
14
@@ -42,7 +42,7 @@ The example in this topic demonstrates debugging in a referenced style sheet.
42
42
</COLLECTION>
43
43
```
44
44
45
-
1. Add the following *`xslincludefile.xsl`*:
45
+
1. Add the following *xslincludefile.xsl*:
46
46
47
47
```xml
48
48
<?xml version='1.0'?>
@@ -65,7 +65,7 @@ The example in this topic demonstrates debugging in a referenced style sheet.
0 commit comments