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.
15 lines
296 B
Ruby
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
|