#include "../includes/compiler.hpp" #include /* Encoded regexes using the Type enum (convert to integer) */ static const std::regex REGEXES[] = { std::regex("\\*(.*?)\\*"), 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", "
  • $1
  • "};