Parse a file or string containing front matter and a document body.
Front matter is a block of yaml wrapped between two lines containing ---
.
In this example, the front matter contains title: Hello
, and the body is
Hello, world
:
---
title: Hello
---
Hello, world
After parsing the document, front matter is returned as a map, and the body as a string.
FrontMatter.parse_file "hello_world.md"
{:ok, %{"title" => "Hello"}, "Hello, world"}
Add front_matter
to your list of dependencies in mix.exs
:
def deps do
[{:front_matter, "~> 0.1.0"}]
end
Ensure front_matter
is started before your application:
def application do
[applications: [:front_matter]]
end
See https://hexdocs.pm/front_matter/
$ mix test
Pull requests are welcome!
The MIT License (MIT). Please check the LICENSE for more information.