ghostty/src/mdgen_ghostty_1.zig
Mitchell Hashimoto daac7943f3 mdgen stylistic changes
2024-01-21 14:53:34 -08:00

14 lines
479 B
Zig

const std = @import("std");
const gen = @import("build/mdgen/mdgen.zig");
pub fn main() !void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
const alloc = gpa.allocator();
const writer = std.io.getStdOut().writer();
try gen.substitute(alloc, @embedFile("build/mdgen/ghostty_1_header.md"), writer);
try gen.genActions(writer);
try gen.genConfig(writer, true);
try gen.substitute(alloc, @embedFile("build/mdgen/ghostty_1_footer.md"), writer);
}