22 lines
354 B
Bash
Executable File
22 lines
354 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Text color variables
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[0;33m'
|
|
NC='\033[0m' # No Color (reset)
|
|
|
|
echo -e "${YELLOW}Testing markown parser :${NC}\n"
|
|
|
|
./test/parser/test_md_parser.sh ./lib/markdown.awk awk
|
|
|
|
exit $?
|
|
|
|
# echo -e "${YELLOW}Testing bob init :${NC}\n"
|
|
|
|
# author="author"
|
|
# blog="blog"
|
|
# lang="fr"
|
|
# dark="y"
|
|
|