# Хлебные крошки

Если в Вашем XSL шаблоне нет проверки узла на **link/url**, то в хлебных крошка можно наблюдать название языка, для этого добавьте в Вашем XSL шаблоне следующее

{% code lineNumbers="true" fullWidth="true" %}

```html
<!-- заменить -->
<!--<xsl:template match="/site">
	<xsl:if test="count(*[@id]) &gt; 0">
		<a href="/">Главная</a>
		<xsl:apply-templates select="*[@id]" />
	</xsl:if>
</xsl:template>-->
<!-- на -->
<xsl:template match="/site">
	<xsl:if test="count(*[@id][link/node() or url/node()]) &gt; 0">
		<a href="/">Главная</a>
		<xsl:apply-templates select="*[@id][link/node() or url/node()]" />
	</xsl:if>
</xsl:template>
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://support.morozovpimnev.ru/multilanguage/khlebnye-kroshki.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
