Skip to content

Commit 808f540

Browse files
authored
Markdig fixes - Part 1 (#2550)
* markdig fixes * undo table change * readded trailing spaces * Apply suggestions from peer review Co-Authored-By: Ron Petrusha <[email protected]> * fix broken link * fix formatting
1 parent e88a58b commit 808f540

File tree

10 files changed

+87
-123
lines changed

10 files changed

+87
-123
lines changed

xml/System.ComponentModel.Design/IDesignerOptionService.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
<format type="text/markdown"><![CDATA[
164164
165165
## Remarks
166-
The `pageName` parameter should consist of "WindowsFormsDesigner\*CategoryName*", where *CategoryName* is an options category name without any white space characters. The category name is typically "General". Therefore, you can access the "General" designer options category with the English page name "WindowsFormsDesigner\General".
166+
The `pageName` parameter should consist of "WindowsFormsDesigner\\*CategoryName*", where *CategoryName* is an options category name without any white space characters. The category name is typically "General". Therefore, you can access the "General" designer options category with the English page name "WindowsFormsDesigner\General".
167167
168168
> [!NOTE]
169169
> The page and value names are always expected in English. Therefore, the following table is provided to help you access the options you want.

xml/System.Globalization/IdnMapping.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
> [!IMPORTANT]
4444
> In the [!INCLUDE[net_v45](~/includes/net-v45-md.md)], the <xref:System.Globalization.IdnMapping> class supports different versions of the IDNA standard, depending on the operating system in use:
4545
>
46-
> - When run on [!INCLUDE[win8](~/includes/win8-md.md)], it supports the 2008 version of the IDNA standard outlined by [RFC 5891: Internationalized Domain Names in Applications (IDNA): Protocol](https://go.microsoft.com/fwlink/?LinkId=231875).
47-
> - When run on earlier versions of the Windows operating system, it supports the 2003 version of the standard outlined by [RFC 3490: Internationalizing Domain Names in Applications (IDNA)](https://go.microsoft.com/fwlink/?LinkId=158110).
46+
> - When run on [!INCLUDE[win8](~/includes/win8-md.md)], it supports the 2008 version of the IDNA standard outlined by [RFC 5891: Internationalized Domain Names in Applications (IDNA): Protocol](https://go.microsoft.com/fwlink/?LinkId=231875).
47+
> - When run on earlier versions of the Windows operating system, it supports the 2003 version of the standard outlined by [RFC 3490: Internationalizing Domain Names in Applications (IDNA)](https://go.microsoft.com/fwlink/?LinkId=158110).
4848
>
4949
> See [Unicode Technical Standard #46: IDNA Compatibility Processing](https://go.microsoft.com/fwlink/?LinkId=232459) for the differences in the way these standards handle particular sets of characters.
5050

xml/System.Net.Configuration/ProxyElement.xml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,7 @@
5353
<Parameters />
5454
<Docs>
5555
<summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ProxyElement" /> class.</summary>
56-
<remarks>
57-
<format type="text/markdown"><![CDATA[
58-
59-
## Remarks
60-
61-
-
62-
63-
]]></format>
64-
</remarks>
56+
<remarks>To be added.</remarks>
6557
<altmember cref="T:System.Net.IAuthenticationModule" />
6658
<altmember cref="T:System.Net.AuthenticationManager" />
6759
<related type="Article" href="~/docs/framework/configure-apps/file-schema/network/index.md">Network Settings Schema</related>

xml/System.Web.Services.Protocols/SoapExtension.xml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -258,19 +258,13 @@
258258
259259
- Class constructor - The class constructor is called every time a SOAP extension is instantiated and is typically used to initialize member variables.
260260
261-
- <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A> - <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A>, however, is called just once, the first time a SOAP request is made to an XML Web services method. If a custom attribute is applied to the XML Web service method, the <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A> method is invoked. This allows the SOAP extension to interrogate the <xref:System.Web.Services.Protocols.LogicalMethodInfo> of an XML Web service method for prototype information or to access extension-specific data passed by a class deriving from <xref:System.Web.Services.Protocols.SoapExtensionAttribute>. The return value is cached by ASP.NET and passed into subsequent <xref:System.Web.Services.Protocols.SoapExtension.Initialize%2A> methods. Therefore, initialization done in <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A> is encapsulated essentially into a one-time performance hit.
262-
263-
- <xref:System.Web.Services.Protocols.SoapExtension.Initialize%2A> - <xref:System.Web.Services.Protocols.SoapExtension.Initialize%2A> is called every time a SOAP request is made to an XML Web service method, but has an advantage over the class constructor, in that the <xref:System.Object> initialized in <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A> is passed to it.
261+
- <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A> - This method is called just once, the first time a SOAP request is made to an XML Web services method. If a custom attribute is applied to the XML Web service method, the <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A> method is invoked. This allows the SOAP extension to interrogate the <xref:System.Web.Services.Protocols.LogicalMethodInfo> of an XML Web service method for prototype information or to access extension-specific data passed by a class deriving from <xref:System.Web.Services.Protocols.SoapExtensionAttribute>. The return value is cached by ASP.NET and passed into subsequent <xref:System.Web.Services.Protocols.SoapExtension.Initialize%2A> methods. Therefore, initialization done in <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A> is encapsulated essentially into a one-time performance hit.
264262
265-
-
263+
- <xref:System.Web.Services.Protocols.SoapExtension.Initialize%2A> - This method is called every time a SOAP request is made to an XML Web service method, but has an advantage over the class constructor, in that the <xref:System.Object> initialized in <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A> is passed to it.
266264
267265
> [!NOTE]
268266
> You can also add a SOAP extension without deriving from <xref:System.Web.Services.Protocols.SoapExtensionAttribute> by using the [\<soapExtensionTypes> Element](https://msdn.microsoft.com/library/7a373a98-6d82-4f8d-a6fc-2996da3fd54c) in a configuration file. For details, see [\<soapExtensionTypes> Element](https://msdn.microsoft.com/library/7a373a98-6d82-4f8d-a6fc-2996da3fd54c) and [SOAP Message Modification Using SOAP Extensions](https://msdn.microsoft.com/library/97d81ace-95e7-4acc-ae39-9692a0021e95).
269267
270-
-
271-
272-
273-
274268
## Examples
275269
The following example demonstrates how you can use the data cached during the <xref:System.Web.Services.Protocols.SoapExtension.GetInitializer%2A> method.
276270
@@ -324,4 +318,4 @@
324318
</Docs>
325319
</Member>
326320
</Members>
327-
</Type>
321+
</Type>

xml/System.Windows.Documents/FixedPage.xml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -364,18 +364,14 @@
364364
- <xref:System.Windows.Documents.FixedPage.ContentBox%2A>.<xref:System.Windows.Rect.Bottom%2A> must be greater than or equal to (<xref:System.Windows.Documents.FixedPage.ContentBox%2A>.<xref:System.Windows.Rect.Top%2A>+1).
365365
366366
- For rules about the relative sizes of the <xref:System.Windows.Documents.FixedPage.ContentBox%2A> and the <xref:System.Windows.Documents.FixedPage.BleedBox%2A>, see the topic <xref:System.Windows.Documents.FixedPage.BleedBox%2A?displayProperty=nameWithType>.
367-
368-
-
369-
367+
370368
<a name="dependencyPropertyInfo_ContentBox"></a>
371369
## Dependency Property Information
372370
373371
|||
374372
|-|-|
375-
|- Identifier field|<xref:System.Windows.Documents.FixedPage.ContentBoxProperty>|
376-
|Metadata properties set to `true`|- None|
377-
378-
-
373+
|Identifier field|<xref:System.Windows.Documents.FixedPage.ContentBoxProperty>|
374+
|Metadata properties set to `true`|None|
379375
380376
]]></format>
381377
</remarks>

xml/System.Windows.Documents/Hyperlink.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<format type="text/markdown"><![CDATA[
3333
3434
## Remarks
35-
<xref:System.Windows.Documents.Hyperlink> implements the <xref:System.Windows.Documents.Hyperlink.NavigateUri%2A> property that you set with the <xref:System.Uri> of the content that should be navigated to when the Hyperlink is clicked. <xref:System.Windows.Documents.Hyperlink> navigation can only occur, however, if either the direct or indirect parent of a <xref:System.Windows.Documents.Hyperlink> is a navigation host, including <xref:System.Windows.Navigation.NavigationWindow>, <xref:System.Windows.Controls.Frame>, or any browser that can host [!INCLUDE[TLA2#tla_xbap#plural](~/includes/tla2sharptla-xbapsharpplural-md.md)] (which includes [!INCLUDE[TLA2#tla_ie7](~/includes/tla2sharptla-ie7-md.md)], [!INCLUDE[TLA2#tla_ie6](~/includes/tla2sharptla-ie6-md.md)], and Firefox 2.0+). For more information, see the **Navigation Hosts** topic in [Navigation Overview](~/docs/framework/wpf/app-development/navigation-overview.md).
35+
<xref:System.Windows.Documents.Hyperlink> implements the <xref:System.Windows.Documents.Hyperlink.NavigateUri%2A> property that you set with the <xref:System.Uri> of the content that should be navigated to when the Hyperlink is clicked. <xref:System.Windows.Documents.Hyperlink> navigation can only occur, however, if either the direct or indirect parent of a <xref:System.Windows.Documents.Hyperlink> is a navigation host, including <xref:System.Windows.Navigation.NavigationWindow>, <xref:System.Windows.Controls.Frame>, or any browser that can host XBAPs (which includes Internet Explorer 6 and later versions, and Firefox 2.0+). For more information, see the **Navigation Hosts** topic in [Navigation Overview](~/docs/framework/wpf/app-development/navigation-overview.md).
3636
3737
<xref:System.Windows.Documents.Hyperlink> enforces a strong content model for child content. See [TextElement Content Model Overview](~/docs/framework/wpf/advanced/textelement-content-model-overview.md) for more information about the <xref:System.Windows.Documents.Hyperlink> content model.
3838
@@ -569,10 +569,10 @@
569569
<ReturnType>System.Uri</ReturnType>
570570
</ReturnValue>
571571
<Docs>
572-
<summary>Gets or sets a [!INCLUDE[TLA2#tla_uri](~/includes/tla2sharptla-uri-md.md)] to navigate to when the <see cref="T:System.Windows.Documents.Hyperlink" /> is activated.</summary>
573-
<value>The <see cref="T:System.Uri" /> to navigate to when the <see cref="T:System.Windows.Documents.Hyperlink" /> is activated. The default is <see langword="null" />.
572+
<summary>Gets or sets a URI to navigate to when the <see cref="T:System.Windows.Documents.Hyperlink" /> is activated.</summary>
573+
<value>The URI to navigate to when the <see cref="T:System.Windows.Documents.Hyperlink" /> is activated. The default is <see langword="null" />.
574574

575-
<block subset="none" type="note"><para><see cref="T:System.Windows.Documents.Hyperlink" /> can navigate to the value of the <see cref="P:System.Windows.Documents.Hyperlink.NavigateUri" /> property only if either the direct or indirect parent of a <see cref="T:System.Windows.Documents.Hyperlink" /> is a navigation host, including <see cref="T:System.Windows.Navigation.NavigationWindow" />, <see cref="T:System.Windows.Controls.Frame" />, or any browser that can host [!INCLUDE[TLA2#tla_xbap#plural](~/includes/tla2sharptla-xbapsharpplural-md.md)] (which includes [!INCLUDE[TLA2#tla_ie7](~/includes/tla2sharptla-ie7-md.md)], [!INCLUDE[TLA2#tla_ie6](~/includes/tla2sharptla-ie6-md.md)], and Firefox 2.0+). For more information, see the **Navigation Hosts** section in [Navigation Overview](~/docs/framework/wpf/app-development/navigation-overview.md).
575+
<block subset="none" type="note"><para><see cref="T:System.Windows.Documents.Hyperlink" /> can navigate to the value of the <see cref="P:System.Windows.Documents.Hyperlink.NavigateUri" /> property only if either the direct or indirect parent of a <see cref="T:System.Windows.Documents.Hyperlink" /> is a navigation host, including <see cref="T:System.Windows.Navigation.NavigationWindow" />, <see cref="T:System.Windows.Controls.Frame" />, or any browser that can host XBAPs (which includes Internet Explorer 6 and later versions, and Firefox 2.0+). For more information, see the Navigation Hosts section in <see href="~/docs/framework/wpf/app-development/navigation-overview.md">Navigation Overview</see>.
576576

577577
</para></block></value>
578578
<remarks>
@@ -960,4 +960,4 @@
960960
</Docs>
961961
</Member>
962962
</Members>
963-
</Type>
963+
</Type>

xml/System.Windows.Documents/Typography.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ Text using OpenType capitals
8585
|<xref:System.Windows.Documents.Typography.StylisticSet20%2A>|<xref:System.Boolean>|`false`|
8686
|<xref:System.Windows.Documents.Typography.Variants%2A>|<xref:System.Windows.FontVariants.Inferior> &#124; <xref:System.Windows.FontVariants.Normal> &#124; <xref:System.Windows.FontVariants.Ordinal> &#124; <xref:System.Windows.FontVariants.Ruby> &#124; <xref:System.Windows.FontVariants.Subscript> &#124; <xref:System.Windows.FontVariants.Superscript>|<xref:System.Windows.FontVariants>.<xref:System.Windows.FontVariants.Normal>|
8787
88-
All dependency properties of this class also have an attached property usage in [!INCLUDE[TLA2#tla_xaml](~/includes/tla2sharptla-xaml-md.md)]. For instance, you can set the <xref:System.Windows.Documents.Typography.AnnotationAlternates%2A> property through this syntax: `<`*object*``**Typography.AnnotationAlternates**`="`*value*`".../>`
88+
All dependency properties of this class also have an attached property usage in [!INCLUDE[TLA2#tla_xaml](~/includes/tla2sharptla-xaml-md.md)].
89+
For instance, you can set the <xref:System.Windows.Documents.Typography.AnnotationAlternates%2A> property through this syntax:
90+
91+
<*object* **Typography.AnnotationAlternates**="*`value`*" .../>
8992
9093
9194
@@ -5705,4 +5708,4 @@ Example of subscripts
57055708
</Docs>
57065709
</Member>
57075710
</Members>
5708-
</Type>
5711+
</Type>

xml/System.Windows.Media/PointCollection.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
*oneOrMorePoints*
8484
One or more <xref:System.Windows.Point> values, with each pair delimited by a single comma and/or one or more spaces.
8585
86-
<xref:System.Windows.Point> *[delimiter* <xref:System.Windows.Point> *]\**
86+
<xref:System.Windows.Point>_[delimiter_<xref:System.Windows.Point>_]\*_
8787
8888
For example, `"0,0 100,100 200,100"` and `"0,0,100,100,200,100"` are both valid.
8989

0 commit comments

Comments
 (0)