Postex is a simple static blog generator using markdown files that was inspired/shamelessly copied from Dashbit's blog post.
The posts are generated at compile time, and syntax highlighting works well. Earmark is used for markdown parsing and makeup_elixir / stolen ex_doc code for syntax highlighting. Phoenix_html is pulled in for a single protocol implementation.
This library just provides the context. The routes, views, controllers and templates are still in your hands.
Most of this work is not my own, all credit to Dashbit and José Valim.
Documentation can be found at https://hexdocs.pm/postex.
This library is in use at alanvardy.com (GitHub)
- Posts are generated at compile time (fast access, no database required)
- Posts live update as you edit them.
- Posts have tags
- Elixir syntax highlighting
- You can add as many additional fields as you want, they can be found under
:data
and are represented as a map. - Includes 5 related posts (determined based on how many tags they share) as an association for each post
- Easy image handling (see below)
- Post url does not exceed 60 characters (for SEO - can be disabled)
- No duplicate slugs (post ids)
- All field keys are consistent across all posts (including within the data field)
Assuming that you use Postex
in a module named Blog
, your API is:
Lists all the posts
With a given page, lists the posts for that page (default posts per page is 10)
Pass it a single tag and it will return a list of the posts with that tag
Get a post by id (slug), returns nil
if not found,
Get a post by id (slug), returns {:ok, post}
or {:error, :not_found}
Lists all the tags
Returns a map where the string keys are the tags, and values are integers representing the frequency of their appearance.
This library requires Elixir >= 1.10
Add postex
to your list of dependencies in mix.exs
:
# mix.exs
def deps do
[
{:postex, "~> 0.1.8"}
]
end
Create a module and use Postex
within it.
defmodule YourApp.Blog do
@moduledoc "The blog context"
use Postex,
prefix: "https://exampleblog.com/posts/", # required
external_links_new_tab: true, # default
per_page: 10 # default
end
Add markdown file patterns to your Endpoint config in config/dev.exs
for live reloading.
# dev.exs
config :your_app, YourAppWeb.Endpoint,
live_reload: [
patterns: [
... the other patterns ...
~r"posts/*/.*(md)$"
]
]
And add some routes
# router.ex
get "/blog", YourAppWeb.PostController, :index
resources "/post", YourAppWeb.PostController, only: [:show]
resources "/tag", YourAppWeb.TagController, only: [:index, :show]
And build out your controllers, views, and templates.
Check CSS.md
for an example on styling the HTML output.
Store markdown files with the path /blog/{year}/{month}-{day}-{slug}.md
For example /blog/2020/03-17-this-is-a-blog-slug.md
Format your markdown file like so
==title==
Your Title Goes Here
==author==
Your name probably
==description==
More text and stuff
==tags==
separate,your_tags,with,commas
==body==
# This is a title
![alt text](picture.jpg "Awesome picture")
This is a paragraph
External links (identified by beginning with http
) are automatically appended with target: "_blank"
to make the link open in a new tab.
You can disable this functionality with
defmodule YourApp.Blog do
@moduledoc "The blog context"
use Postex,
prefix: "https://exampleblog.com/posts/",
external_links_new_tab: false
end
Store your images in the path /priv/static/images/blog/{year}/{picture.jpg}
and reference them by the filename only (as seen in the example above).
If you wish to implement pagination, check out the GitHub repository for alanvardy.com for examples of how I put it together.
You may have occasional issues getting a markdown file recognized after being added or renamed, in this case run mix compile --force
.
I welcome contributions, but please check with me before starting on a pull request - I would hate to have your efforts be in vain.