diff --git a/README.md b/README.md index d73b219..a83303c 100644 --- a/README.md +++ b/README.md @@ -281,9 +281,14 @@ print(raw_metadata) # 'title: Test Title\nauthor: Test Author\n' ## FAQ +- **Hasn't this been done before?** Possibly, but as far as I can tell, not in a systematic + way for multiple file formats. + I needed this myself, and think we'd all be better off if more tools used YAML metadata + consistently, so I've released the format and implementation here. + - **Is this mature?** This is the first draft of this format. But I've been using this on my own projects for a couple months. - The flexibity of just having metadata on all your text files is great for workflows, + The flexibity of just having metadata on all your text files has been great for workflows, pipelines, etc. - **When should we use it?** All the time if you can! diff --git a/pyproject.toml b/pyproject.toml index e9fcecc..a3f7c10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "frontmatter-format" # Keep this a dev version, as the dynamic versioning plugin is used for actual release versions: version = "0.0.0.dev" -description = "A format for YAML frontmatter on any file." +description = "A micro-format for YAML metadata on any file." authors = ["Joshua Levy "] readme = "README.md" license = "MIT"