View Source Postex.Post (Postex v0.1.8)

An individual blog post

Link to this section Summary

Link to this section Types

@type t() :: %Postex.Post{
  author: binary(),
  body: binary(),
  data: map(),
  date: Date.t(),
  description: binary(),
  filename: term(),
  id: binary(),
  related_posts: [t()],
  tags: [binary()],
  title: binary()
}

Link to this section Functions

@spec parse!(
  binary(),
  keyword()
) :: t()