Hello! I tried to find a solution via Google, but unfortunately couldn't find anything relevant...
I have a template something like this: Image: ${imageName} <br /> <img src="${imageSrc}" /> <table> <#list items as item> <tr> <td>${item.name}</td> <td>${item.status}</td> </tr> </#list> </table> And I need to get a list of all used parameters (with its types), for example: String: imageName String: imageSrc Array(List): items Is there any way to do this using some already existing classes or should I write my own parser for such templates? Thank You very much.