joerichsen / ymlr

A YAML encoder for Elixir.

Home Page:https://hexdocs.pm/ymlr/Ymlr.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ymlr - A YAML Encoder for Elixir

ymlr - A YAML encoder for Elixir.

Build Status Coverage Status Hex.pm Documentation Hex.pm

Installation

The package can be installed by adding ymlr to your list of dependencies in mix.exs:

def deps do
  [
    {:ymlr, "~> 1.0"}
  ]
end

Examples

Encode a single document - optionally with comments:

    iex> Ymlr.document!(%{a: 1})
    """
    ---
    a: 1
    """

    iex> Ymlr.document!({"comment", %{a: 1}})
    """
    ---
    # comment
    a: 1
    """

    iex> Ymlr.document!({["comment 1", "comment 2"], %{"a" => "a", "b" => :b, "c" => "true", "d" => "100"}})
    """
    ---
    # comment 1
    # comment 2
    a: a
    b: b
    c: 'true'
    d: '100'
    """

Encode a multiple documents

    iex> Ymlr.documents!([%{a: 1}, %{b: 2}])
    """
    ---
    a: 1

    ---
    b: 2
    """

About

A YAML encoder for Elixir.

https://hexdocs.pm/ymlr/Ymlr.html

License:MIT License


Languages

Language:Elixir 100.0%