fixing minor issues seen with mix credo
This commit is contained in:
parent
e2fd00f043
commit
10fbc6732b
4 changed files with 14 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
||||||
defmodule Home73k.Blog do
|
defmodule Home73k.Blog do
|
||||||
|
@moduledoc """
|
||||||
|
Blog content loading & data access functions.
|
||||||
|
"""
|
||||||
import Home73k, only: [app_blog_content: 0]
|
import Home73k, only: [app_blog_content: 0]
|
||||||
alias Home73k.Blog.Post
|
alias Home73k.Blog.Post
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
defmodule Home73k.Blog.Post do
|
defmodule Home73k.Blog.Post do
|
||||||
|
@moduledoc """
|
||||||
|
Blog Post struct definition and content parsing functions.
|
||||||
|
"""
|
||||||
alias Home73k.Highlighter
|
alias Home73k.Highlighter
|
||||||
|
|
||||||
@enforce_keys [:title, :id, :date, :author, :tags, :lede, :body, :corpus]
|
@enforce_keys [:title, :id, :date, :author, :tags, :lede, :body, :corpus]
|
||||||
|
@ -76,7 +79,7 @@ defmodule Home73k.Blog.Post do
|
||||||
# grab text only, rejecting HTML
|
# grab text only, rejecting HTML
|
||||||
# downcase & scrub line breaks, slashes
|
# downcase & scrub line breaks, slashes
|
||||||
corpus =
|
corpus =
|
||||||
(tags ++ [title, (lede && lede) || " ", body])
|
(tags ++ [title, lede || " ", body])
|
||||||
|> Enum.join(" ")
|
|> Enum.join(" ")
|
||||||
|> Floki.parse_fragment!()
|
|> Floki.parse_fragment!()
|
||||||
|> Floki.text()
|
|> Floki.text()
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
defmodule Home73kWeb.BlogLive do
|
defmodule Home73kWeb.BlogLive do
|
||||||
|
@moduledoc """
|
||||||
|
LiveView engine for Blog navigation
|
||||||
|
"""
|
||||||
use Home73kWeb, :live_view
|
use Home73kWeb, :live_view
|
||||||
|
|
||||||
alias Home73k.Blog
|
alias Home73k.Blog
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
defmodule Home73kWeb.LiveHelpers do
|
defmodule Home73kWeb.LiveHelpers do
|
||||||
|
@moduledoc """
|
||||||
|
Functions to make working with Phoenix LiveView a little easier.
|
||||||
|
"""
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Performs the {:noreply, socket} for a given socket.
|
Performs the {:noreply, socket} for a given socket.
|
||||||
This helps make the noreply pipeable
|
This helps make the noreply pipeable
|
||||||
|
|
Loading…
Reference in a new issue