Skip to content

Commit 4222a80

Browse files
committed
acrolinx validation fixes
1 parent 3acdeaf commit 4222a80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/search/search-autocomplete-tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Search-as-you-type is a common technique for improving the productivity of user-
1818
To implement these experiences in Azure Cognitive Search, you will need:
1919

2020
+ A *suggester* on the back end.
21-
+ A query that includes the Autocomplete or Suggestions API on the request.
22-
+ A *UI control* that handles auto-completed text inputs and outputs in your client app. We recommend using an existing JavaScript library for this purpose.
21+
+ A *query* specifying Autocomplete or Suggestions API on the request.
22+
+ A *UI control* to handle search-as-you-type interactions in your client app. We recommend using an existing JavaScript library for this purpose.
2323

2424
In Azure Cognitive Search, autocompleted queries and suggested results are retrieved from the search index, from selected fields that you have registered with a suggester. A suggester is part of the index, and it specifies which fields will provide content that either completes a query, suggests a result, or does both. When the index is created and loaded, a suggester data structure is created internally to store prefixes used for matching on partial queries. For suggestions, choosing suitable fields that are unique, or at least not repetitive, is essential to the experience. For more information, see [Create a suggester](index-add-suggesters.md).
2525

@@ -74,7 +74,7 @@ Auto-filling a query term or dropping down a list of matching links requires use
7474

7575
Although you could write this code natively, it's much easier to use functions from existing JavaScript library. This article demonstrates two, one for suggestions and another for autocomplete.
7676

77-
+ [Autocomplete widget (jQuery UI)]((https://jqueryui.com/autocomplete/)) is used in the Suggestion example. You can create a search box, and then reference it in a JavaScript function that uses the Autocomplete widget. Properties on the widget set the source (an autocomplete or suggestions function), minimum length of input characters before action is taken, and positioning.
77+
+ [Autocomplete widget (jQuery UI)](https://jqueryui.com/autocomplete/) is used in the Suggestion example. You can create a search box, and then reference it in a JavaScript function that uses the Autocomplete widget. Properties on the widget set the source (an autocomplete or suggestions function), minimum length of input characters before action is taken, and positioning.
7878

7979
+ [XDSoft Autocomplete plug-in](https://xdsoft.net/jqplugins/autocomplete/) is used the Autocomplete example.
8080

@@ -239,7 +239,7 @@ The Autocomplete function takes the search term input. The method creates an [Au
239239

240240
## Next steps
241241

242-
Follow these links for end-to-end instructions or code demonstrating both search-as-you-type experiences.
242+
Follow these links for end-to-end instructions or code demonstrating both search-as-you-type experiences. Both code examples include hybrid implementations of suggestions and autocomplete together.
243243

244244
+ [Tutorial: Create your first app in C# (lesson 3)](tutorial-csharp-type-ahead-and-suggestions.md)
245245
+ [C# code sample: azure-search-dotnet-samples/create-first-app/3-add-typeahead/](https://github.com/Azure-Samples/azure-search-dotnet-samples/tree/master/create-first-app/3-add-typeahead)

0 commit comments

Comments
 (0)