Я пытаюсь интегрировать язык, который я разрабатываю, с doxygen, в настоящее время я могу сгенерировать документацию моего языка из компилятора в виде json / xml или любого другого файла разметки, но как ввести его в doxygen, есть любая пользовательская языковая конфигурация?
{
"class_name" : "MyClass",
"inherits" : "OtherClass",
"description" : "the description about the class.",
"variables" : [
{"name" : "var1", "description" : "documentation about the variable"},
],
"methods" : [
{ "name" : "method1", args : [], "description" : "about the method1" },
{ "name" : "method2", args : ["arg1", "arg2"], "description" : "about the method2" }
],
}