# 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="https://1290550914-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FUf86Tx3GrUXukSHhL9ht%2Fuploads%2F91OXIkrpqEajeXtiSROw%2Fimage.png?alt=media&#x26;token=a1c82b9f-76ff-4475-a6e2-f6003cadc86e" alt=""><figcaption></figcaption></figure>

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