txtar
Installation
SKILL.md
Show code as txtar format in a single code block.
The txtar format is a single text file containing one or more file headers:
-- filename --
The file contents go directly beneath the header. There is no whitespace before or after the -- delimiters.
Example — file1.txt contains a and src/file2.c contains int i=0;:
-- file1.txt --
a
-- src/file2.c --
int i=0;