From aec1d8536864b2044b5b8dc415fd3a59b7e9ee5a Mon Sep 17 00:00:00 2001 From: John Pasula Date: Thu, 4 Mar 2010 15:49:28 -0700 Subject: [PATCH] Fix some bbcode formatting --- ARL.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ARL.lua b/ARL.lua index 0968a8c..299d9c3 100644 --- a/ARL.lua +++ b/ARL.lua @@ -1802,7 +1802,7 @@ do tinsert(text_table, strformat("Ackis Recipe List Text Dump for %s, in the form of Comma Separated Values.\n ", profession)) tinsert(text_table, "Spell ID,Recipe Name,Skill Level,ARL Filter Flags,Acquire Methods,Known\n") elseif (output == "BBCode") then - tinsert(text_table, strformat("Ackis Recipe List Text Dump for %s, in the form of BBCode.\n ", profession)) + tinsert(text_table, strformat("Ackis Recipe List Text Dump for %s, in the form of BBCode.\n", profession)) end for SpellID in pairs(RecipeDB) do @@ -1825,7 +1825,7 @@ do if not RecipeDB[SpellID].is_known then tinsert(text_table, "[color=red]") end - tinsert(text_table, "[b]" .. SpellID .. "[\b] - " .. RecipeDB[SpellID].name .. " (" .. RecipeDB[SpellID].skill_level .. ")") + tinsert(text_table, "\n[b]" .. SpellID .. "[\\b] - " .. RecipeDB[SpellID].name .. " (" .. RecipeDB[SpellID].skill_level .. ")\n") -- Close Color tag if not RecipeDB[SpellID].is_known then tinsert(text_table, "[/color]\nRecipe Flags:\n[list]") -- 1.7.9.5