
When you eat [3 cookies]{cookies: 2..100}, you consume <strong>[150. calories]{calories}</strong>. That’s [7.%]{dailypct} of your recommended daily calories.

    let kcal_per_cookie = 50;
    let daily_calories = 2_100;
    calories = cookies * kcal_per_cookie;
    dailypct = calories / daily_calories;

- - -

This file is an example of [Active Markdown](https://activemarkdown.org).

Check out more [examples](https://activemarkdown.org/examples.html) or read the [reference](https://activemarkdown.org/reference.html).
