Skip to content

Commit de7a14f

Browse files
committed
fix: MD034/no-bare-urls
Bare URL used
1 parent cfa4454 commit de7a14f

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The steps in this section vary depending on which version of Visual Studio you h
2626

2727
### To install the setup and deployment project template for Visual Studio 2019
2828

29-
1. If you havent already done so, download the Microsoft Visual Studio Installer Projects extension. The extension is free for Visual Studio developers and adds the functionality of the setup and deployment project templates to Visual Studio. When you're connected to the Internet, in Visual Studio, choose **Extensions** > **Manage Extensions**. Under the **Extensions and Updates** dialog, select the **Online** tab and type *Microsoft Visual Studio Installer Projects* in the search box. Hit **Enter**, select **Microsoft Visual Studio \<version> Installer Projects**, and click **Download**. Choose to run and install the extension, then restart Visual Studio.
29+
1. If you haven't already done so, download the Microsoft Visual Studio Installer Projects extension. The extension is free for Visual Studio developers and adds the functionality of the setup and deployment project templates to Visual Studio. When you're connected to the Internet, in Visual Studio, choose **Extensions** > **Manage Extensions**. Under the **Extensions and Updates** dialog, select the **Online** tab and type *Microsoft Visual Studio Installer Projects* in the search box. Hit **Enter**, select **Microsoft Visual Studio \<version> Installer Projects**, and click **Download**. Choose to run and install the extension, then restart Visual Studio.
3030

3131
1. On the Visual Studio menu bar, choose **File** > **Recent Projects and Solutions**, and then choose to reopen your project.
3232

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

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

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**.
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**.
4848

4949
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**.
5050

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

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

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**.
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**.
9090

9191
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**.
9292

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)