Required configuration
This section, empowered by the details about how we build a DocSearch index, gives you the best practices to optimize our crawl. Adopting this following specification is required to let our crawler build the best experience from your website. You will need to update your website and follow these rules.
Note: If your website is generated thanks to one of our supported tools, you do not need to change your website as it is already compliant with our requirements.
#
The generic configuration example{ "index_name": "example", "start_urls": ["https://www.example.com/doc/"], "sitemap_urls": ["https://www.example.com/sitemap.xml"], "stop_urls": [], "selectors": { "lvl0": { "selector": ".DocSearch-lvl0", "global": true, "default_value": "Documentation" }, "lvl1": { "selector": ".DocSearch-lvl1", "global": true, "default_value": "Chapter" }, "lvl2": ".DocSearch-content .DocSearch-lvl2", "lvl3": ".DocSearch-content .DocSearch-lvl3", "lvl4": ".DocSearch-content .DocSearch-lvl4", "lvl5": ".DocSearch-content .DocSearch-lvl5", "lvl6": ".DocSearch-content .DocSearch-lvl6", "text": ".DocSearch-content p, .DocSearch-content li" }, "custom_settings": { "attributesForFaceting": ["language", "version"] }, "nb_hits": "OUTPUT OF THE CRAWL"}
#
Overview of a clear layoutA website implementing these best practices will look simple and crystal clear. It can have this following aspect:
The main blue element will be your .DocSearch-content
container. More details in the following guidelines.
selectors#
Use the right classes asYou can add some specific static classes to help us find your content role. These classes can not involve any style changes. These dedicated classes will help us to create a great learn-as-you-type experience from your documentation.
Add a static class
DocSearch-content
to the main container of your textual content. Most of the time, this tag is a<main>
or an<article>
HTML element.Every searchable
lvl
element outside this main documentation container (for instance in a sidebar) must be aglobal
selector. They will be globally picked up and injected to every record built from your page. Be careful, the level value matters and every matching element must have an increasing level along the HTML flow. A levelX
(forlvlX
) should appear after a levelY
whileX > Y
.lvlX
selectors should use the standard title tags likeh1
,h2
,h3
, etc. You can also use static classes. Set a uniqueid
orname
attribute to these elements as detailed below.Every DOM elements matching the
lvlX
selectors must have a uniqueid
orname
attribute. This will help the redirection to directly scroll down to the exact place of the matching elements. These attributes define the right anchor to use.Every textual element (selector
text
) must be wrapped in a<p>
or<li>
tag. This content must be atomic and split into small entities. Be careful to never nest one matching element into another one as it will create duplicates.Stay consistent and do not forget that we need to have some consistency along the HTML flow as presented here.
#
Introduce global information as meta tagsOur crawler automatically extracts information from our DocSearch specific meta tags:
<meta name="docsearch:language" content="en" /><meta name="docsearch:version" content="1.0.0" />
The crawl adds the content
value of these meta
tags to all records extracted from the page. The meta tags name
must follow the docsearch:$NAME
pattern. $NAME
is the name of the attribute set to all records.
You can then transform these attributes as facetFilters
to filter over them from the UI. You will need to set the setting attributesForFaceting
of the Algolia index. You need to submit a PR on your associated configuration via the DocSearch custom_settings
setting.
"custom_settings": { "attributesForFaceting": ["language", "version"]}
It enables you to filter on the value of these meta tags. The following example shows how to update the JavaScript snippet to retrieve records from these pages.
docsearch({ […], algoliaOptions: { 'facetFilters': ["language:en", "version:1.0.0"] }, […],});
The docsearch:version
meta tag can be a set of comma-separated tokens, each of which is a version relevant to the page. These tokens must be compliant with the SemVer specification or only contain alphanumeric characters (e.g. latest
, next
, etc.). As facet filters, these version tokens are case-insensitive.
For example, all records extracted from a page with the following meta tag:
<meta name="docsearch:version" content="2.0.0-alpha.62,latest" />
The version
attribute of these records will be :
version:["2.0.0-alpha.62" , "latest"]
#
Nice to haveYour website should have an updated sitemap. This is key to let our crawler know what should be updated. Do not worry, we will still crawl your website and discover embedded hyperlinks to find your great content.
Every page needs to have their full context available. Using global elements might help (see above).
Make sure your documentation content is also available without JavaScript rendering on the client-side. If you absolutely need JavaScript turned on, you need to set
js_render: true
in your configuration.
Any questions? Send us an email.