Hey C folks, I have a question. My template has inline SVGs and they make the whole code unreadable. Is there a way to use a directive with a fopen to put the svg content inside it? Something like:
#define LOGO fopen("../assets/logo.svg", "r");
@thomasorus Unfortunately, you can't do that exactly but, you might be able to move your templates over into separate include files or as separate C files (containing the string as global variables).
@thomasorus Umm, if you'd like I could whip up a little example for you later after my kiddos are in bed.