1 // Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
2 package com.intellij.lang.html;
4 import com.intellij.lang.Language;
5 import com.intellij.lang.xml.XMLLanguage;
6 import org.jetbrains.annotations.NonNls;
7 import org.jetbrains.annotations.NotNull;
9 public class HTMLLanguage extends XMLLanguage {
11 public static final HTMLLanguage INSTANCE = new HTMLLanguage();
13 private HTMLLanguage() {
14 super(XMLLanguage.INSTANCE, "HTML", "text/html", "text/htmlh");
17 protected HTMLLanguage(@NotNull Language baseLanguage, @NonNls @NotNull String name, @NonNls @NotNull String @NotNull ... mime) {
18 super(baseLanguage, name, mime);