Skip to content

Instantly share code, notes, and snippets.

@mithereal
Created November 11, 2022 01:03
Show Gist options
  • Save mithereal/145e56ac4e077be10fe77dfb215c6201 to your computer and use it in GitHub Desktop.
Save mithereal/145e56ac4e077be10fe77dfb215c6201 to your computer and use it in GitHub Desktop.
php n2lbr implemented in elixir
defmodule n2lbr do
@doc """
Replace newlines with <br />.
## Examples
iex> Nl2br('abc\ndef')
"abc<br/>def"
"""
def nl2br(string) do
String.replace(string, ~r/\r|\n/, "<br />")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment