Packages

Generate print-ready PDF files using HTML, JavaScript, and CSS. Heavy lifting is performed by PrinceXML.

Current section

Files

Jump to
princess lib princess.ex
Raw

lib/princess.ex

defmodule Princess do
@moduledoc """
Documentation for `Princess`.
"""
@doc """
Hello world.
## Examples
iex> Princess.hello()
:world
"""
def hello do
:world
end
end