ex_format icon indicating copy to clipboard operation
ex_format copied to clipboard

Escape triple quotes in docstring

Open uohzxela opened this issue 7 years ago • 0 comments

  embed_template :lib, """
  defmodule <%= @mod %> do
    @moduledoc \"""
    Documentation for <%= @mod %>.
    \"""

    @doc \"""
    Hello world.

    ## Examples

        iex> <%= @mod %>.hello
        :world

    \"""
    def hello do
      :world
    end
  end
  """

uohzxela avatar Aug 20 '17 11:08 uohzxela