ESPAsyncWebServer icon indicating copy to clipboard operation
ESPAsyncWebServer copied to clipboard

TEMPLATE_PLACEHOLDER define problem

Open softwarecrash opened this issue 1 year ago • 0 comments

Hello, i try to redefine the template placeholder with

#ifdef  TEMPLATE_PLACEHOLDER
   #undef  TEMPLATE_PLACEHOLDER
#endif
#define TEMPLATE_PLACEHOLDER '`' 

#include <ESPAsyncWebServer.h>
.....

but it was ignored, so when i change the line 63 in webResponseImpl.h to the new character it work. so what can i do to overwrite the default template placeholder without modify the library direct?

softwarecrash avatar Jun 15 '24 12:06 softwarecrash