Files
danbooru/app/helpers/bulk_update_requests_helper.rb
evazion c4521acb54 burs/index: format update scripts as dtext, same as forum.
Format scripts on the BUR index page as dtext, the same way they're
formatted in forum posts. This means that tags have colors and underlines,
but they don't have post counts. Gathering post counts was too slow.
2020-02-16 19:20:48 -06:00

15 lines
296 B
Ruby

module BulkUpdateRequestsHelper
def bur_script_example
<<~EOS
create alias kitty -> cat
remove alias kitty -> cat
create implication cat -> animal
remove implication cat -> animal
mass update kitty -> cat
category touhou -> copyright
EOS
end
end