m8

A general-purpose preprocessor for metaprogramming.


m8

/

config

/

m8.json

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{
  "macros": [
    {
      "name": "program_external",
      "info": "defines an external macro call",
      "usage": "program_external <args>",
      "regex": "^(.*)$"
    },
    {
      "name": "program_remote",
      "info": "defines a remote macro call",
      "usage": "program_remote <args>",
      "regex": "^(.*?)$",
      "url": "http://localhost:8080/m8"
    }
  ]
}
Back to Top