mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 01:42:32 +00:00
Filter article JSON through RubyPants
This commit is contained in:
parent
d15d7cb2c6
commit
ae6811ad41
1 changed files with 3 additions and 3 deletions
|
@ -14,11 +14,11 @@ module WezM
|
|||
|
||||
def article_to_json(article)
|
||||
{
|
||||
:title => article[:title],
|
||||
:title => RubyPants.new(article[:title]).to_html,
|
||||
:path => article.identifier,
|
||||
:date => Time.parse(article[:created_at]).rfc2822,
|
||||
:text => article[:title],
|
||||
:extra => article[:extra] || " "
|
||||
:text => RubyPants.new(article[:title]).to_html,
|
||||
:extra => RubyPants.new(article[:extra] || " ").to_html
|
||||
}
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue