Skip to content

Commit ff0cfcb

Browse files
committed
handle suggestions
1 parent 9666083 commit ff0cfcb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/how-to-get-worksheet-information-from-a-package.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The following assembly directives are required to compile the code in this topic
3939

4040
In the Open XML SDK, the **[SpreadsheetDocument](/dotnet/api/documentformat.openxml.packaging.spreadsheetdocument)** class represents an Excel document package. To create an Excel document, you create an instance of the **SpreadsheetDocument** class and populate it with parts. At a minimum, the document must have a workbook part that serves as a container for the document, and at least one worksheet part. The text is represented in the package as XML using **SpreadsheetML** markup.
4141

42-
To create the class instance from the document you call one of the **[Open](/dotnet/api/documentformat.openxml.packaging.spreadsheetdocument.open.md)** methods. In this example, you must open the file for read access only. Therefore, you can use the **[Open(String, Boolean)](/dotnet/api/documentformat.openxml.packaging.spreadsheetdocument.open#DocumentFormat_OpenXml_Packaging_SpreadsheetDocument_Open_System_String_System_Boolean_)** method, and set the Boolean parameter to **false**.
42+
To create the class instance from the document you call one of the **[Open](/dotnet/api/documentformat.openxml.packaging.spreadsheetdocument.open)** methods. In this example, you must open the file for read access only. Therefore, you can use the **[Open(String, Boolean)](/dotnet/api/documentformat.openxml.packaging.spreadsheetdocument.open#DocumentFormat_OpenXml_Packaging_SpreadsheetDocument_Open_System_String_System_Boolean_)** method, and set the Boolean parameter to **false**.
4343

4444
The following code example calls the **Open** method to open the file specified by the **filepath** for read-only access.
4545

@@ -112,7 +112,7 @@ After you have opened the file for read-only access, you instantiate the **Sheet
112112
Dim sheets As S = mySpreadsheet.WorkbookPart.Workbook.Sheets
113113
```
114114

115-
You then you iterate through the **Sheets** collection and display **[OpenXmlElement](/dotnet/api/documentformat.openxml.openxmlelement)** and the **[OpenXmlAttribute](/api/documentformat.openxml.openxmlattribute)** in each element.
115+
You then you iterate through the **Sheets** collection and display **[OpenXmlElement](/dotnet/api/documentformat.openxml.openxmlelement)** and the **[OpenXmlAttribute](/dotnet/api/documentformat.openxml.openxmlattribute)** in each element.
116116

117117
```csharp
118118
foreach (E sheet in sheets)

docs/introduction-to-markup-compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Open XML defines formats for word-processing, spreadsheet and presentation docum
3535

3636
## Markup compatibility in the Open XML file formats specification
3737

38-
Markup compatibility is discussed in [ECMA-376, Second Edition, Part 3 - Markup Compatibility and Extensibility](https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-376,%20Second%20Edition, 20Part%203%20-%20Markup%20Compatibility%20and%20Extensibility.zip), which is recommended reading to understand markup compatibility. The specification defines XML attributes to express compatibility rules, and XML elements to specify alternate content. For example, the **Ignorable** attribute specifies namespaces that can be ignored when they are not understood by the consuming application. Alternate-Content elements specify markup alternatives that can be chosen by an application at run time. For example, Word 2013 can choose only the markup alternative that it recognizes. The complete list of compatibility-rule attributes and alternate-content elements and their details can be found in the specification.
38+
Markup compatibility is discussed in [ECMA-376, Second Edition, Part 3 - Markup Compatibility and Extensibility](https://www.ecma-international.org/wp-content/uploads/ECMA-376-Fifth-Edition-Part-3-Markup-Compatibility-and-Extensibility.zip), which is recommended reading to understand markup compatibility. The specification defines XML attributes to express compatibility rules, and XML elements to specify alternate content. For example, the **Ignorable** attribute specifies namespaces that can be ignored when they are not understood by the consuming application. Alternate-Content elements specify markup alternatives that can be chosen by an application at run time. For example, Word 2013 can choose only the markup alternative that it recognizes. The complete list of compatibility-rule attributes and alternate-content elements and their details can be found in the specification.
3939

4040
## Open XML SDK support for markup compatibility
4141

docs/open-xml-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The SDK is built on the **System.IO.Packaging**
2828
API and provides strongly-typed classes to manipulate documents that
2929
adhere to the Office Open XML File Formats specification. The Office
3030
Open XML File Formats specification is an open, international,
31-
[ECMA-376, Second Edition](https://www.ecma-international.org/publications/standards/Ecma-376.htm)
31+
[ECMA-376, 5th Edition](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/)
3232
and [ISO/IEC 29500](https://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=51463)
3333
standard. The Open XML file formats are useful for developers because
3434
they are an open standard and are based on well-known technologies: ZIP

docs/structure-of-a-spreadsheetml-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ some of the important spreadsheet elements.
5555
--------------------------------------------------------------------------------
5656
## Minimum Workbook Scenario
5757

58-
The following text from the [Standard ECMA-376](https://www.ecma-international.org/publications/standards/Ecma-376.htm)
58+
The following text from the [Standard ECMA-376](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/)
5959
introduces the minimum workbook scenario.
6060

6161
The smallest possible (blank) workbook must contain the following:

0 commit comments

Comments
 (0)