Files
danbooru/app/helpers/wiki_pages_helper.rb
evazion a7dc05ce63 Enable frozen string literals.
Make all string literals immutable by default.
2021-12-14 21:33:27 -06:00

12 lines
297 B
Ruby

# frozen_string_literal: true
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