Markdown Showcase — Full Document

Weekend Camping Trip #

Planning a weekend getaway. CalcMark lets you think in prose and calculate inline — no separate spreadsheet needed.

Budget #

gear = $120 → $120.00
campsite = 2 * $35 → $70.00
food = $60 → $60.00
gas_price = 3 * $4.50 → $13.50
total = gear + campsite + food + gas_price → $263.50

Per person, assuming a group of four:

group = 4 → 4
per_person = total / group → $65.88

Packing Checklist #

Things to remember:

  • Tent and sleeping bags
  • Cooler with ice
  • Firewood (or buy at the site)
  • First aid kit
  • Weather forecast

Tip: Start packing the night before. You always forget something if you rush.

Distance & Fuel #

The campground is 85 miles from home:

distance = 85 miles → 85 mi
distance in km → 137 km

Average fuel economy and round-trip cost:

round_trip = 170 → 170
mpg = 28 → 28
gallons = round_trip / mpg → 6.071429
fuel_cost = gallons * $4.50 → $27.32

Quick Conversions #

50 fahrenheit in celsius → 10 celsius
2 liters in gallons → 0.5283 gallons

Meal Plan #

Day 1 #

MealCost
Breakfast$8
Lunch$12
Dinner$15
day1_food = $8 + $12 + $15 → $35.00

Day 2 #

day2_food = day1_food * 0.90 → $31.50

Slightly cheaper — we’ll use leftovers.

total_food = day1_food + day2_food → $66.50

Summary #

The real cost is always more than you think.

— Every camper, ever

all_in = total + fuel_cost + total_food → $357.32
all_in_pp = all_in / group → $89.33