Current section

Files

Jump to
moon lib moon_web helpers html.ex
Raw

lib/moon_web/helpers/html.ex

defmodule MoonWeb.Helpers.Html do
@moduledoc """
Some interal helpers for html-escaping and transforming
"""
def get_as_anchor_id(title) do
title |> String.replace(" ", "-")
end
@doc "remove line-start tabulations from Surface-rendered HTML"
def trim_tabs(html) do
Regex.replace(~r/\n\ */, html, "\n") |> String.trim()
end
end