Skip to content

Commit af07ce2

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#2042 from nschonni/fix--MD034
fix: MD034/no-bare-urls
2 parents 95a1b8f + 6c756e9 commit af07ce2

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

docs/ide/walkthrough-deploying-your-program-cpp.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ The walkthrough shows how to use Windows Installer to deploy your application. Y
2222

2323
The steps in this section vary depending on which version of Visual Studio you have installed. Make sure the version selector in the upper left of this page is set correctly.
2424

25+
<!-- markdownlint-disable MD034 -->
26+
2527
::: moniker range="vs-2019"
2628

2729
### To install the setup and deployment project template for Visual Studio 2019
@@ -44,7 +46,7 @@ The steps in this section vary depending on which version of Visual Studio you h
4446

4547
1. In **Solution Explorer**, select the **Game Installer** project and choose **View** > **Properties Window** or hit **F4** to open the **Properties** window.
4648

47-
1. Specify additional details as you want them to appear in the installer. For example, use *Contoso* for **Manufacturer**, *Game Installer* for **Product Name**, and *http\://www.contoso.com* for **SupportUrl**.
49+
1. Specify additional details as you want them to appear in the installer. For example, use *Contoso* for **Manufacturer**, *Game Installer* for **Product Name**, and *https\://www.contoso.com* for **SupportUrl**.
4850

4951
1. On the menu bar, choose **Build** > **Configuration Manager**. In the **Project** table, under the **Build** column, check the box for **Game Installer**. Click **Close**.
5052

@@ -86,7 +88,7 @@ The steps in this section vary depending on which version of Visual Studio you h
8688

8789
1. In **Solution Explorer**, select the **Game Installer** project and choose **View** > **Properties Window** or hit **F4** to open the **Properties** window.
8890

89-
1. Specify additional details as you want them to appear in the installer. For example, use *Contoso* for **Manufacturer**, *Game Installer* for **Product Name**, and *http\://www.contoso.com* for **SupportUrl**.
91+
1. Specify additional details as you want them to appear in the installer. For example, use *Contoso* for **Manufacturer**, *Game Installer* for **Product Name**, and *https\://www.contoso.com* for **SupportUrl**.
9092

9193
1. On the menu bar, choose **Build** > **Configuration Manager**. In the **Project** table, under the **Build** column, check the box for **Game Installer**. Click **Close**.
9294

docs/mfc/reference/cinternetsession-class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -495,10 +495,10 @@ The pointer that `OpenURL` returns depends on *pstrURL*'s type of service. The t
495495
496496
|URL type|Returns|
497497
|--------------|-------------|
498-
|file://|`CStdioFile*`|
499-
|http://|`CHttpFile*`|
500-
|gopher://|`CGopherFile*`|
501-
|ftp://|`CInternetFile*`|
498+
|`file://`|`CStdioFile*`|
499+
|`http://`|`CHttpFile*`|
500+
|`gopher://`|`CGopherFile*`|
501+
|`ftp://`|`CInternetFile*`|
502502
503503
### Remarks
504504

styleguide/template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ To link to an external file, use the full URL as the link. Use HTTPS URL if appl
113113

114114
If a URL appears in a Markdown file, it will be transformed into a clickable link.
115115

116-
- Example: https://www.github.com
116+
- Example: <https://www.github.com>
117117

118118
### Links to APIs
119119

0 commit comments

Comments
 (0)