Skip to content

Instantly share code, notes, and snippets.

View devgaucho's full-sized avatar

Gaucho devgaucho

View GitHub Profile
@devgaucho
devgaucho / html.h
Created December 6, 2023 03:05 — forked from gboncoffee/html.h
Macros to generate HTML with the C preprocessor
#ifndef __HTML_MACROS
#define __HTML_MACROS
#define HTML(l, head, body) <!DOCTYPE html> \
<html lang=#l> \
head \
body \
</html>
#define HEAD(...) <head> \