Not sure if this should go in #code-help or #help but I think #code-help.
Question:
Error in my Markdown Repl
echo Run isn't configured. Try adding a .replit and configuring it https://docs.replit.com/programming-ide/configuring-run-button
Repl link:
https://replit.com/@RotoBit-Studios/RotoBit-Blog
Code snippet:
.replit
run = "cat 3-30-2023.md | cowsay | lolcat"
[nix]
channel = "stable-22_11"
replit.nix
{ pkgs }: {
deps = [
pkgs.lolcat
pkgs.cowsay
];
}