> For the complete documentation index, see [llms.txt](https://docs.babelshark.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.babelshark.net/dev/html-markup/issues.md).

# Issues

Something wrong may appear in the page markup. BabelShark will try to indicate the problems.

### Nested \_\_ class

One of the most often issues is a presence of nested elements with `__`class:

```html
<div class="__ parent">
    Some content
    <a href="..." class="__">is here</a>
</div>
```

You may see that inner `__` is located within outer `__` element. This will cause issues while localizing strings.

BabelShark indicates the problem in translations list:

<figure><img src="/files/VSyY0ruJBVdi9frsKIKl" alt=""><figcaption></figcaption></figure>

To fix this issue, edit your HTML and avoid nested elements with `__` class.
