README.md
# atomb
An Atom feed builder for Gleam!
[](https://hex.pm/packages/atomb)
[](https://hexdocs.pm/atomb/)
```sh
gleam add atomb@1
```
```gleam
import atomb
pub fn main() {
let feed = atomb.Feed(
// ... fill in the data structure
)
// Render it!
atomb.render(feed)
}
```
Further documentation can be found at <https://hexdocs.pm/atomb> and
<https://www.ietf.org/rfc/rfc4287.txt>.