mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
21 lines
726 B
Java
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);
|
|
}
|
|
}
|