Files
openide/xml/xml-parser/src/com/intellij/lang/html/HTMLLanguage.java
Victor Turansky 45c546d689 WEB-68929 Module intellij.xml.parser (from intellij.xml.frontback)
GitOrigin-RevId: de312aa4b70477a324b9750452a22b3a8d4a0457
2025-02-04 21:14:05 +00:00

21 lines
726 B
Java

// 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.
package com.intellij.lang.html;
import com.intellij.lang.Language;
import com.intellij.lang.xml.XMLLanguage;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
public class HTMLLanguage extends XMLLanguage {
public static final HTMLLanguage INSTANCE = new HTMLLanguage();
private HTMLLanguage() {
super(XMLLanguage.INSTANCE, "HTML", "text/html", "text/htmlh");
}
protected HTMLLanguage(@NotNull Language baseLanguage, @NonNls @NotNull String name, @NonNls @NotNull String @NotNull ... mime) {
super(baseLanguage, name, mime);
}
}