mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-16 15:26:28 +00:00
13 lines
352 B
C#
13 lines
352 B
C#
|
|
namespace AIStudio.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Selects the syntax highlighter used by <see cref="CodeEditor"/>.
|
||
|
|
/// The enum value is passed to the JavaScript module as a string, so a new
|
||
|
|
/// language must also be handled in <c>wwwroot/system/CodeEditor/code-editor.js</c>.
|
||
|
|
/// </summary>
|
||
|
|
public enum CodeEditorLanguage
|
||
|
|
{
|
||
|
|
PLAIN_TEXT,
|
||
|
|
LUA,
|
||
|
|
}
|