FizzBuzz.md
Turn a markdown file into a coding challenge with an applicant API for questions and submissions.
define a challenge like this:
--- # Email address that will receive submissions # via a POST to api/<id>/submissions submissionEmail: submission@fizzbuzz.md; # Number of hours applicants have to submit # their solution. Late submissions are flagged. timeLimitHours: 72 # Email address that will receive messages # when applicants submit questions # about the challenge via a POST to /api/<id>/queries supportEmail: support@fizzbuzz.md; # Whether the challenge is viewable w/o a # session token generated from a POST request public: true # Email sent if the applicant's solution is acceptable acceptanceEmail: > Thanks for completing the challenge! We'd like to move forward with a follow up interview in which we will iterate on your solution. Please book a time here: https://calendly.com/x-challenge-followup # Email sent if the applicant's solution is not acceptable rejectionEmail: > Thanks for completing the challenge! Unfortunately, after reviewing your solution, we've decided to move forward with other candidates. ---
# Fizz Buzz Write a function that takes a number and returns "Fizz" if the number is divisible by 3, "Buzz" if the number is divisible by 5, and "FizzBuzz"; if the is divisible by both 3 and 5.  So does syntax highlighting: ```js console.log('syntax highlighting is a thing.'); ```
then ship it via cli
FBMD_TOKEN=<your-token> npx zx https://makefizz.buzz/cli FizzBuzz.md