Reference implementation for `BiteMark` - a markup language for recipes based on Markdown.
Project description
BiteMark
Reference implementation for BiteMark - a markup language for recipes based on Markdown.
Why
I was looking for a uniform way to store my collected recipes in digital form. Since I've already stored my notes in Markdown format for many years, it seemed like a reasonable choice for recipes too:
- It's human-readable - so are recipes!
- It's structured - so are recipes!
- It's easily extensible
- It's straightforward to format text and lists
Why Not JSON-LD?
Many websites expose recipe metadata in JSON-LD format which is great for extracting the data, but while this is technically human-readable, it's not a great experience.
Specification
Recipe Structure
# <Recipe title>
## Ingredients
- <quantity> <unit> <ingredient>
- <quantity> <unit> <ingredient>
## Instructions
1. Step 1
2. Step 2
E.g. a very simple recipe could look like this:
# Spaghetti Carbonara
## Ingredients
- 200 g spaghetti
- 100 g pancetta
## Instructions
1. Boil pasta.
2. Fry pancetta.
Units
In order to facilitate unit conversion, units are sorted into two categories:
- Volume
- Mass
- Volume:
mlliter / lcup_us- American cupcup_uk- UK cupcup- Defaults to American cuptablespoon / tbspteaspoon / tsppint
- Mass:
g / gramkg / kilogramoz / ouncelb / pound
Non-liquid units can be converted between volume and mass based on a density table.
Multiple Recipes
- A Markdown file may contain multiple recipes, each beginning with a Markdown header (
#or##).
Metadata (Optional)
Metadata can be placed at the top of the recipe inside an HTML comment block. This is so the metadata won't be rendered. This little syntactic trick is necessary because, sadly, Markdown does not support comments directly.
Here is an example for common metadata:
<!--
servings: 4
cuisine: Italian
units: metric
-->
There are no formal restrictions on which keys can be used in metadata.
However, some keys have special meaning in the reference implementation:
servings: Used as the baseline for ingredient scaling when-s/--servingsis used.units: Used as the default unit system for display and conversion (metric,american,british) when no CLI unit override is passed.
If servings is missing or invalid, scaling falls back to a baseline of 2 servings.
CLI Usage
Run the interpreter with:
bitemark [-u UNIT|--unit UNIT] [-s SERVINGS|--servings SERVINGS] <markdown_file>
Options:
-u,--unit: Override display unit system (for examplemetric,american, orbritish).-s,--servings: Scale ingredient quantities to the requested servings.
Examples:
bitemark examples/recipes/milk.md
bitemark -s 6 examples/recipes/milk.md
bitemark --unit american --servings 2 examples/recipes/milk.md
Scaling uses metadata servings as the baseline when present.
Goals of the Default Implementation
- Implement specification as completely as possible
- Provide test cases to test interpreter against
- Act as testbed for changes to the BiteMark spec
- Avoid dependencies outside the Python Standard Library
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bitemark-0.2.0.tar.gz.
File metadata
- Download URL: bitemark-0.2.0.tar.gz
- Upload date:
- Size: 27.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a63063939b3d188d671f952d7978dbdea77d07b5e3fa1545c941f69b4ca8d6e
|
|
| MD5 |
fba89d5f1ce7379fb26b6be49be6363f
|
|
| BLAKE2b-256 |
fdb4da45c5028972d1bde5f16b2e7e9f95b90fa3971ae96bcf562bef9a0c191f
|
File details
Details for the file bitemark-0.2.0-py3-none-any.whl.
File metadata
- Download URL: bitemark-0.2.0-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
047972a0a316ea7bd3b1e1625a427780ab5dde13acb0fa116b93235f2a7e7b73
|
|
| MD5 |
96b4c61b72314a4982e75223342e8a4e
|
|
| BLAKE2b-256 |
bf48f8cce0cf36dc1d4171c26ad3da80b00ff64968461110186bf2ca4bf8202e
|