diff --git a/README.md b/README.md
index eb004f2..f8dae2a 100644
--- a/README.md
+++ b/README.md
@@ -21,6 +21,7 @@
| Option to serve files
with a built-in HTTP server |  Yes |  Regular files only |
| Signaling about the stream state
on GPIO using [libgpiod](https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about) |  Yes |  No |
| Access to webcam controls (focus, servos)
and settings such as brightness via HTTP |  No |  Yes |
+| Compatibility with mjpg-streamer's API |  Yes | :) |
Footnotes:
* ```1``` Long before µStreamer, I made a [patch](https://github.com/jacksonliam/mjpg-streamer/pull/164) to add DV-timings support to mjpg-streamer and to keep it from hanging up no device disconnection. Alas, the patch is far from perfect and I can't guarantee it will work every time - mjpg-streamer's source code is very complicated and its structure is hard to understand. With this in mind, along with needing multithreading and JPEG hardware acceleration in the future, I decided to make my own stream server from scratch instead of supporting legacy code.
diff --git a/README.ru.md b/README.ru.md
index f02eba9..208ea37 100644
--- a/README.ru.md
+++ b/README.ru.md
@@ -21,6 +21,7 @@
| Возможность сервить файлы встроенным
HTTP-сервером |  Есть |  Нет каталогов |
| Вывод сигналов о состоянии стрима на GPIO
с помощью [libgpiod](https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about) |  Есть |  Нет |
| Поддержка контролов веб-камер (фокус,
движение сервами) и всяких настроек,
типа яркости, через HTTP |  Нет |  Есть |
+| Совместимость с API mjpg-streamer'а |  Есть | :) |
Сносочки:
* ```1``` Еще до написания µStreamer, я запилил [патч](https://github.com/jacksonliam/mjpg-streamer/pull/164), добавляющий в mjpg-streamer поддержку DV-таймингов и предотвращающий его зависание при отключении устройства. Однако патч, увы, далек от совершенства и я не гарантирую его стопроцентную работоспособность, поскольку код mjpg-streamer чрезвычайно запутан и очень плохо структурирован. Учитывая это, а также то, что в дальнейшем мне потребовались многопоточность и аппаратное кодирование JPEG, было принято решение написать свой стрим-сервер с нуля, чтобы не тратить силы на поддержку лишнего легаси.
diff --git a/linters/Dockerfile b/linters/Dockerfile
index 62d8bb6..b5411fe 100644
--- a/linters/Dockerfile
+++ b/linters/Dockerfile
@@ -16,6 +16,9 @@ RUN pacman -Syu --noconfirm \
python-pip \
python-tox \
cppcheck \
+ npm \
&& (pacman -Sc --noconfirm || true)
+RUN npm install htmlhint -g
+
CMD /bin/bash
diff --git a/linters/tox.ini b/linters/tox.ini
index e6a09d6..c08492f 100644
--- a/linters/tox.ini
+++ b/linters/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = cppcheck, flake8, pylint, mypy, vulture
+envlist = cppcheck, flake8, pylint, mypy, vulture, htmlhint
skipsdist = true
[testenv]
@@ -44,3 +44,7 @@ whitelist_externals = bash
commands = bash -c 'vulture tools/*.py'
deps =
vulture
+
+[testenv:htmlhint]
+whitelist_externals = htmlhint
+commands = htmlhint src/http/data/*.html
diff --git a/src/http/data/index.html b/src/http/data/index.html
index 165df1a..bf55baf 100644
--- a/src/http/data/index.html
+++ b/src/http/data/index.html
@@ -4,6 +4,7 @@