Skip to content

Commit 498cc97

Browse files
committed
updated NOTE formatting
1 parent 844cd32 commit 498cc97

File tree

4 files changed

+15
-29
lines changed

4 files changed

+15
-29
lines changed

Instructions/Labs/LAB_AK_01_examine_settings_interface.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ If you want to test the enable/disable options, you can select the disable optio
5353

5454
Default settings are configured for you when you activate GitHub Copilot in Visual Studio Code. The settings are organized under the Extensions label, which includes settings for both GitHub Copilot and GitHub Copilot Chat. You can customize settings for the GitHub Copilot extensions using Visual Studio Code's settings tab.
5555

56-
> [!TIP]
57-
> You can use the Copilot menu to open a Settings tab that's filtered for GitHub Copilot.
56+
> **TIP**: You can use the Copilot menu to open a Settings tab that's filtered for GitHub Copilot.
5857
5958
Use the following steps to complete this section of the exercise:
6059

@@ -160,8 +159,7 @@ Use the following steps to complete this section of the exercise:
160159

161160
- Chat with Extension button: The Chat with Extension button is located below the Chat Mode button. GitHub Copilot Extensions are a type of GitHub App that integrates the power of external tools into GitHub Copilot Chat. You can use this button to select from a list of Copilot Extensions. The default extensions provide a combination of Chat participants and Slash commands that provide context for your prompts.
162161

163-
> [!NOTE]
164-
> Anyone with a Copilot Pro, Copilot Pro+, or Copilot Free plan can use Copilot Extensions. For organizations or enterprises with a Copilot Business or Copilot Enterprise plan, organization owners and enterprise administrators can grant access to Copilot Extensions. Copilot Extensions is not available for GitHub Enterprise Server.
162+
> **NOTE**: Anyone with a Copilot Pro, Copilot Pro+, or Copilot Free plan can use Copilot Extensions. For organizations or enterprises with a Copilot Business or Copilot Enterprise plan, organization owners and enterprise administrators can grant access to Copilot Extensions. Copilot Extensions is not available for GitHub Enterprise Server.
165163
166164
- Start Voice Chat button: The Start Voice Chat button is located to the right of the Chat with Extension button. You can use this button to enable or disable voice interactions with GitHub Copilot. When voice interactions are enabled, you can use your voice to ask GitHub Copilot questions or request code suggestions.
167165

@@ -231,8 +229,7 @@ The Quick Chat window is a simplified interface for interacting with GitHub Copi
231229
232230
1. Notice that the Quick Chat window now includes **Program.cs** to the right of the **Add Context** button.
233231
234-
> [!TIP]
235-
> Adding project files to the Chat context (Chat view, Quick Chat, or Inline Chat) helps GitHub Copilot provide more relevant suggestions. When adding project files to the Chat context, it's often easier to use a drag-and-drop operation rather than the Add Context button.
232+
> **TIP**: Adding project files to the Chat context (Chat view, Quick Chat, or Inline Chat) helps GitHub Copilot provide more relevant suggestions. When adding project files to the Chat context, it's often easier to use a drag-and-drop operation rather than the Add Context button.
236233
237234
1. Scroll to the top of the Quick Chat window and resubmit the same prompt:
238235
@@ -248,8 +245,7 @@ The Quick Chat window is a simplified interface for interacting with GitHub Copi
248245
249246
Switching to the Chat view is useful when you need to extend and manage a chat session that started in the Quick Chat window.
250247
251-
> [!TIP]
252-
> The Quick Chat window is great for quick questions and simple tasks. However, if you want a more dedicated Chat environment, you should use the Chat view. The Chat view provides a more comprehensive interface for interacting with GitHub Copilot and includes features like chat history, file management, and more advanced options for managing your chat sessions.
248+
> **TIP**: The Quick Chat window is great for quick questions and simple tasks. However, if you want a more dedicated Chat environment, you should use the Chat view. The Chat view provides a more comprehensive interface for interacting with GitHub Copilot and includes features like chat history, file management, and more advanced options for managing your chat sessions.
253249
254250
### Explore the Inline Chat features
255251

Instructions/Labs/LAB_AK_02_analyze_document_code.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,7 @@ Use the following steps to complete this section of the exercise:
185185
186186
Use chat variables, such as **#class**, to include specific context in your prompt. To see a list of all available chat variables, type **#** in the chat prompt box.
187187
188-
> [!NOTE]
189-
> GitHub Copilot considers your chat history and the code files you have open in Visual Studio Code when constructing a context for your prompt and generating a response.
188+
> **NOTE**: GitHub Copilot considers your chat history and the code files you have open in Visual Studio Code when constructing a context for your prompt and generating a response.
190189
191190
1. Take a minute to verify the accuracy of GitHub Copilot's response.
192191
@@ -297,8 +296,7 @@ Use the following steps to complete this section of the exercise:
297296
298297
The data files use ID properties to link entities. For example, a `Loan` object has a `PatronId` property that links to a `Patron` object with the same ID. The JSON files contain data for authors, books, book items, patrons, and loans.
299298
300-
> [!NOTE]
301-
> Notice that Author names, book titles, and patron names have been anonymized for the purposes of this guided project.
299+
> **NOTE**: Notice that Author names, book titles, and patron names have been anonymized for the purposes of this guided project.
302300
303301
### Build and run the application
304302
@@ -320,8 +318,7 @@ Use the following steps to complete this section of the exercise:
320318
321319
You should see a list of patrons that match the search query.
322320
323-
> [!NOTE]
324-
> The application uses a case-sensitive search process.
321+
> **NOTE**: The application uses a case-sensitive search process.
325322
326323
1. At the "Input Options" prompt, type **2** and then press Enter.
327324
@@ -384,13 +381,11 @@ Use the following steps to complete this section of the exercise:
384381
385382
```
386383
387-
> [!NOTE]
388-
> Using multiple prompts, one for each section of the README file would produce more detailed results. A single prompt is used in this exercise to simplify the process.
384+
> **NOTE**: Using multiple prompts, one for each section of the README file would produce more detailed results. A single prompt is used in this exercise to simplify the process.
389385
390386
1. Review the response to ensure each section is formatted as markdown.
391387
392-
> [!NOTE]
393-
> You can update sections individually to provide more detailed information or if they aren't formatted correctly. You can also copy GitHub Copilot's response to the README file and then make corrections directly in the markdown file.
388+
> **NOTE**: You can update sections individually to provide more detailed information or if they aren't formatted correctly. You can also copy GitHub Copilot's response to the README file and then make corrections directly in the markdown file.
394389
395390
1. Copy the suggested documentation, and then paste it into the README.md file.
396391

Instructions/Labs/LAB_AK_03_develop_code_features.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ Use the following steps to set up the library application:
101101

102102
Creating the GitHub repository for your code will enable you to share your work with others and collaborate on the project.
103103

104-
> [!NOTE]
105-
> You use your own GitHub account to create a private GitHub repository for the library application.
104+
> **NOTE**: You use your own GitHub account to create a private GitHub repository for the library application.
106105
107106
Use the following steps to complete this section of the exercise:
108107

@@ -122,8 +121,7 @@ Use the following steps to complete this section of the exercise:
122121

123122
1. Name for the repository **AccelerateDevGHCopilot** and then select **Publish to GitHub private repository**.
124123

125-
> [!NOTE]
126-
> If you're not signed in to GitHub in Visual Studio Code, you'll be prompted to sign in. Once you're signed in, authorize Visual Studio Code with the requested permissions.
124+
> **NOTE**: If you're not signed in to GitHub in Visual Studio Code, you'll be prompted to sign in. Once you're signed in, authorize Visual Studio Code with the requested permissions.
127125
128126
1. In the Source Control view, enter a commit message, such as "Initial commit", and then select **Publish Branch**.
129127

@@ -423,8 +421,7 @@ Use the following steps to complete this section of the exercise:
423421
424422
```
425423
426-
> [!NOTE]
427-
> The code suggested by Inline chat may include stub code for the `SearchBooks` method. You can accept that code. You'll implement the `SearchBooks` method in the next section.
424+
> **NOTE**: The code suggested by Inline chat may include stub code for the `SearchBooks` method. You can accept that code. You'll implement the `SearchBooks` method in the next section.
428425
429426
### Implement a SearchBooks method using the Chat view
430427
@@ -471,8 +468,7 @@ Use the following steps to complete this section of the exercise:
471468
472469
```
473470
474-
> [!NOTE]
475-
> Be sure to remove any code comments created by GitHub Copilot. Unnecessary and inaccurate comments can negatively influence GitHub Copilot's suggestions.
471+
> **NOTE**: Be sure to remove any code comments created by GitHub Copilot. Unnecessary and inaccurate comments can negatively influence GitHub Copilot's suggestions.
476472
477473
1. Select the `SearchBooks` method.
478474

Instructions/Labs/LAB_AK_05_refactor_improve_existing_code.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The following updates are assigned to you:
4141
This exercise includes the following tasks:
4242

4343
1. Set up the library application in Visual Studio Code.
44-
1. Analyze and refactor code using the Chat view in Ask and Edit mode.
44+
1. Analyze and refactor code using the Chat view in Ask and Edit modes.
4545
1. Refactor code using inline chat and the Chat view in Edit and Agent modes.
4646

4747
## Set up the library application in Visual Studio Code
@@ -972,8 +972,7 @@ Now that you've refactored the code, it's time to build and run the application
972972

973973
You should see a list of patrons that match the search query.
974974

975-
> [!NOTE]
976-
> The application uses a case-sensitive search process.
975+
> **NOTE**: The application uses a case-sensitive search process.
977976

978977
1. At the "Input Options" prompt, type **2** and then press Enter.
979978

0 commit comments

Comments
 (0)