Skip to content

Commit 9886fc3

Browse files
committed
fix code formatting
1 parent 647d944 commit 9886fc3

13 files changed

+61
-146
lines changed

docs/schema/column-element-view.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ The following sections describe attributes, child elements, and parent elements.
4444

4545
| **Attribute** | **Description** |
4646
| :-------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
47-
| **AutoHyperLink** \ | Optional **Boolean**. **TRUE** to surround text with `<A>` tags if the text appears like a hyperlink (for example, `www.microsoft.com`). |
47+
| **AutoHyperLink** | Optional **Boolean**. **TRUE** to surround text with `<A>` tags if the text appears like a hyperlink (for example, `www.microsoft.com`). |
4848
| **AutoHyperLinkNoEncoding** | Optional **Boolean**. **TRUE** to surround text with `<A>` tags if the text appears like a hyperlink (for example, `www.microsoft.com`) but without HTML encoding. |
4949
| **AutoNewLine** | Optional **Boolean**. **TRUE** to insert `<BR>` tags into the text stream and to replace multiple spaces with a nonbreaking space (`&nbsp;`). |
5050
| **Default** | Optional **Text**. Renders the text assigned to this attribute if the value returned by a selection is an empty string (`""`). |
5151
| **Format** | Optional **Text**. Controls the date formatting for date fields. Supported formats include **DateTime**, **DateOnly**, **TimeOnly**, **ISO8601**, **ISO8601Basic**, and **ISO8601Gregorian**. |
5252
| **HTMLEncode** | Optional **Boolean**. **TRUE** to convert embedded characters so that they're displayed as text in the browser. In other words, characters that could be confused with HTML tags are converted to entities. |
53-
| **Name** | Optional **Text**. Allows the **Column** element to be used outside the field rendering context by supplying an ID (for example, `<Column Name="`_ID_`"/>`). |
53+
| **Name** | Optional **Text**. Allows the **Column** element to be used outside the field rendering context by supplying an ID (for example, `<Column Name="_ID_"/>`). |
5454
| **ShowField** | Optional **Text**. The **ShowField** attribute can be set to the column name to display. By default, a hyperlinked text from the **Title** column of the record in the external list is displayed. But the **ShowField** attribute can be used to override that and display another field from the external list. The following data types are allowed as targets of a **ShowField** attribute: **Text**, **Choice**, and **Counter**.|
5555
| **StripWS** | Optional **Boolean**. **TRUE** to remove white space from the beginning and end of the value returned by the element. |
5656
| **SubColumnNumber** | Optional **Integer**. |

docs/schema/entity-element-in-entities-solutionmanifestdefinitions-schema.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ Defines the external content type that this context definition is associated wit
2020
**Schema**: SolutionManifestDefinitions
2121

2222
```XML
23-
<Entity EntityTypeName = "String" EntityTypeNamespace = "String" Name = "String" Description = "String"> </Entity>
23+
<Entity EntityTypeName="String"
24+
EntityTypeNamespace="String"
25+
Name="String"
26+
Description="String">
27+
</Entity>
2428
```
2529

2630
## Elements and attributes

docs/schema/field-element-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The following sections describe attributes, child elements, and parent elements.
4444
| **AutoHyperLinkNoEncoding** | Optional **Boolean**. **TRUE** to surround text with `<A>` tags if the text appears to be a hyperlink (for example, `www.microsoft.com`) but without HTML encoding. |
4545
| **AutoNewLine** | Optional **Boolean**. **TRUE** to insert `<BR>` tags into the text stream and to replace multiple spaces with a nonbreaking space (`&nbsp;`). |
4646
| **HTMLEncode** | Optional **Boolean**. **TRUE** to convert embedded characters so that they are displayed as text in the browser. In other words, characters that could be confused with HTML tags are converted to entities. |
47-
| **Name** | Optional **Text**. Allows the **Field** element to be used outside the field rendering context by supplying an ID (for example, `<Field Name="`_ID_`"/>`). |
47+
| **Name** | Optional **Text**. Allows the **Field** element to be used outside the field rendering context by supplying an ID (for example, `<Field Name="_ID_"/>`). |
4848
| **StripWS** | Optional **Boolean**. **TRUE** to remove white space from the beginning and end of the value returned by the element. |
4949
| **URLEncode** | Optional **Boolean**. **TRUE** to convert special characters, such as spaces, to quoted UTF-8 format (for example, `%c3%ab` for character `ë`). |
5050
| **URLEncodeAsURL** | Optional **Boolean**. Like **URLEncode**, but **TRUE** to specify that the string to encode is a path component of a URL so that forward slashes (`/`) are not encoded. |

docs/schema/fieldsortparams-element-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Returns the sort direction on a list, rendering **Asc** or **Desc** based on whe
2525
AutoHyperLinkNoEncoding = "TRUE" | "FALSE"
2626
AutoNewLine = "TRUE" | "FALSE"
2727
Default = "Text"
28-
..ExpandXML = "TRUE" | "FALSE"
28+
ExpandXML = "TRUE" | "FALSE"
2929
HTMLEncode = "TRUE" | "FALSE"
3030
StripWS = "TRUE" | "FALSE"
3131
URLEncode = "TRUE" | "FALSE"

docs/schema/filterlink-element-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Returns the URL for filtering a view; typically used in the toolbars that appear
2525
AutoHyperLinkNoEncoding = "TRUE" | "FALSE"
2626
AutoNewLine = "TRUE" | "FALSE"
2727
Default = "Text"
28-
..ExpandXML = "TRUE" | "FALSE"
28+
ExpandXML = "TRUE" | "FALSE"
2929
HTMLEncode = "TRUE" | "FALSE"
3030
Paged = "TRUE" | "FALSE"
3131
StripWS = "TRUE" | "FALSE"

docs/schema/getvar-element-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Returns a variable in the context of rendering the page. Variables can be set ei
2929
HTMLEncode = "TRUE" | "FALSE"
3030
Name = "Text"
3131
Scope ="Request"
32-
StripWS = "TRUE" | "FALSE"
32+
StripWS = "TRUE" | "FALSE"
3333
URLEncode = "TRUE" | "FALSE"
3434
URLEncodeAsURL = "TRUE" | "FALSE">
3535
</GetVar>

docs/schema/listproperty-element-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The following sections describe attributes, child elements, and parent elements.
4040

4141
### Attributes
4242

43-
|Attribute*|Description|
43+
|Attribute|Description|
4444
|:-----|:-----|
4545
|**AutoHyperLink** |Optional **Boolean**. **TRUE** to surround text with `<A>` tags if the text appears like a hyperlink, for example, `www.microsoft.com`. |
4646
|**AutoHyperLinkNoEncoding** |Optional **Boolean**. **TRUE** to surround text with `<A>` tags if the text appears like a hyperlink (for example, `www.microsoft.com`) but without HTML encoding. |

docs/schema/listtemplate-element-list-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The following sections describe attributes, child elements, and parent elements.
105105
| **RootWebOnly** | Optional **Boolean**. **TRUE** to specify that the list created from the definition exists only in the root website of a site collection. *Same as previous version, but deprecated.* |
106106
| **SecurityBits** | Optional **Text**. Defines the item-level permissions in the list for users with sufficient permission to read or edit list items. The **SecurityBits** attribute contains a 2-digit string. The first digit in the string controls the read access; the second digit in the string controls the edit access. For read access, the following are valid digits:<ul><li>1: Users can read all items.</li><li>2: Users can read only their own items.</li></ul>For edit access, the following are valid digits:<ul><li>1: Users can edit all items.</li><li>2: Users can edit only their own items.</li><li>4: Users cannot edit items.</li></ul>**Note**: Users with the ManageLists permission can read and edit all items, regardless of value of the **SecurityBits** attribute. This attribute does not apply to document libraries.|
107107
| **Sequence** | Optional **Integer**. Specifies the ordering priority to use for the list template on the **Create** page. If **Sequence** is not set, the template appears last in arbitrary order with any other templates that also lack a **Sequence** value. Two templates that specify the same sequence are sorted together in an arbitrary order. |
108-
| **SetupPath** | Optional **Text**. Specifies the path to a folder in the SharePoint Foundation setup directory (**%ProgramFiles%\\Common Files\\Microsoft Shared\\web server extensions\\15\\\TEMPLATE**) that contains a file to include in the template. |
108+
| **SetupPath** | Optional **Text**. Specifies the path to a folder in the SharePoint Foundation setup directory (**%ProgramFiles%\\Common Files\\Microsoft Shared\\web server extensions\\15\\TEMPLATE**) that contains a file to include in the template. |
109109
| **SyncType** | Optional **Boolean**. **TRUE** to override the default client list type associated with a SharePoint Foundation base template. |
110110
| **Type** | Optional **Integer**. Provides a unique identifier for the template. This identifier must be unique within the feature, but need not be unique across all feature definitions or site definitions. For a list of the default list template types, see SPListTemplateType.<br /><br />This attribute corresponds to the **Type** attribute of the [List](list-element-list.md) element. |
111111
| **Unique** | Optional **Boolean**. **TRUE** to specify that the list definition or list template can be used to create a list only during site creation and cannot be used to create a list through the object model or user interface after the site template or definition is applied. Setting this attribute to **TRUE** has the effect of making the list hidden so that it does not appear as an option on the **Create** page or on the **Documents and Lists** page. |

docs/schema/meetingproperty-element-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Represents a property of a list in a Meeting Workspace site.
2525
AutoHyperLinkNoEncoding = "TRUE" | "FALSE"
2626
AutoNewLine = "TRUE" | "FALSE"
2727
Default = "Text"
28-
..ExpandXML = "TRUE" | "FALSE"
28+
ExpandXML = "TRUE" | "FALSE"
2929
HTMLEncode = "TRUE" | "FALSE"
3030
Select = "Text"
3131
StripWS = "TRUE" | "FALSE"

docs/schema/property-element-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Returns the property from the context of the current [ForEach](foreach-element-v
2525
AutoHyperLinkNoEncoding = "TRUE" | "FALSE"
2626
AutoNewLine = "TRUE" | "FALSE"
2727
Default = "Text"
28-
..ExpandXML = "TRUE" | "FALSE"
28+
ExpandXML = "TRUE" | "FALSE"
2929
HTMLEncode = "TRUE" | "FALSE"
3030
Name = "Text"
3131
OuterLookupField = "TRUE" | "FALSE"

0 commit comments

Comments
 (0)