<html><head><link rel="canonical" href="https://www.jetbrains.com/help/writerside/allow-search-engine-indexing.html.md/" data-react-helmet="true"/></head><body># Allow search engine indexing

If you want your published documentation to be indexed by search engines, enable the Allow search engine indexing checkbox when [creating a new instance](instances.html#add_help_instance). Otherwise, it will not be indexed by search engines and thus will not appear in search results.

Procedure: Enable indexing for existing instance

1. In the  Writerside tool window , right-click an instance and select Edit. .

2. In the Edit Instance dialog, select Allow search engine indexing and click OK.

This option controls the `<noindex-content>` variable in  `[buildprofiles.xml](buildprofiles-xml.html)` . By default, if the variable is not present, content will not be indexed. You can manually enable indexing by adding the variable globally for all instances or for a specific one:

```XML
<build-profile instance="foo">
    <variables>
        <noindex-content>false</noindex-content>
    </variables>
</build-profile>
```

Procedure: Restrict indexing for topic

If you enable indexing globally or for certain published instances, you can still hide content of specific topics from search engines using the `<no-index>` tag.

* Add a self-closing `<no-index>` element at the beginning of a topic. You can filter this element to restrict indexing a topic only for specific instances.

Markdown:

```PLAINTEXT
# Install Writerside

<no-index instance="ab">

This is how you install Writerside.
```

Semantic markup:

```XML
<topic xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nonamespaceschemalocation="https://resources.jetbrains.com/writerside/1.0/topic.v2.xsd" title="Install Writerside" id="Installing_Writerside">

    <no-index instance="ab">

    <p>This is how you install Writerside.</p>
</no-index></topic>
```

</no-index></no-index></no-index></noindex-content></body></html>