10 lines
266 B
Ruby
10 lines
266 B
Ruby
module WikiPagesHelper
|
|
def wiki_page_other_names_list(wiki_page)
|
|
names_html = wiki_page.other_names.map do |name|
|
|
link_to(name, "https://www.pixiv.net/tags/#{u(name)}/artworks", class: "wiki-other-name")
|
|
end
|
|
|
|
safe_join(names_html, " ")
|
|
end
|
|
end
|