#include "../includes/compiler.hpp" #include static const unsigned short N_ITEMS = 4; /* Encoded regexes using the Type enum (convert to integer) */ static const std::regex REGEXES[] = { std::regex("\\*\\*(.*?)\\*\\*"), std::regex("\\*(.*?)\\*"), std::regex("_(.*?)_"), std::regex("~(.*?)~")}; /* Encoded replacement strings using the Type enum (convert to integer) */ static const char *REPLACEMENTS[] = {"$1", "$1", "$1", "$1"};