add syntax highlighting (WIP)

This commit is contained in:
MihailRis
2024-12-04 22:13:17 +03:00
parent ce1e9f76cf
commit ed3865964b
16 changed files with 168 additions and 43 deletions
+12
View File
@@ -0,0 +1,12 @@
#pragma once
#include <string>
#include <memory>
struct FontStylesScheme;
namespace devtools {
std::unique_ptr<FontStylesScheme> syntax_highlight(
const std::string& lang, std::string_view source
);
}