As documented in our [feature review](https://github.com/orgs/pattern-lab/projects/3#card-23742746) I am planning to remove the `00-atoms/` means of ordering in favor of markdown. * Metadata should not be baked into file names - it mucks with git history * It complicates the code immensely, leading to issues like #890 When this issue is finished, specify `order` within the optional markdown frontmatter to specify the order in which PL generates the UI. **source/_patterns/atoms.md** ``` yaml order: 1 --- # Atoms are small ``` **_patterns/atoms/buttons.md** ``` yaml order: 1 --- # Buttons are the next big thing. ``` **_patterns/atoms/buttons/calltoaction.md** ``` yaml order: 3 --- # Try a click today ``` Related: https://github.com/pattern-lab/patternlab-node/issues/415