Add support for HTML language

This commit is contained in:
Konrad Borowski 2019-03-02 18:38:45 +01:00
parent 8e60c2c697
commit 08609b2f41
2 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1 @@
DELETE FROM languages WHERE name = 'HTML';

View File

@ -0,0 +1,2 @@
INSERT INTO languages(priority, name, highlighter_mode, mime) VALUES
(10, 'HTML', 'html', 'text/html');