diff --git a/src/gui/storyCaption.tw b/src/gui/storyCaption.tw
index 85d5e5f4667a2ae9070406f4e3e423c9fc7c2e09..4a955553afef334d957c7804dd68e46a61cbeefb 100644
--- a/src/gui/storyCaption.tw
+++ b/src/gui/storyCaption.tw
@@ -125,51 +125,51 @@
 			<<else>> @@.green;Rep@@ |
 			<</if>>
 			<<if $rep > 19000>>
-				@@color:rgb(0,145,0);worshipped@@
+				<span style="color:rgb(0,145,0)">worshipped</span>
 			<<elseif $rep > 18000>>
-				@@color:rgb(0,150,0);great@@
+				<span style="color:rgb(0,150,0)">great</span>
 			<<elseif $rep > 17000>>
-				@@color:rgb(0,155,0);exalted@@
+				<span style="color:rgb(0,155,0)">exalted</span>
 			<<elseif $rep > 16000>>
-				@@color:rgb(0,160,0);illustrious@@
+				<span style="color:rgb(0,160,0)">illustrious</span>
 			<<elseif $rep > 15000>>
-				@@color:rgb(0,165,0);prestigious@@
+				<span style="color:rgb(0,165,0)">prestigious</span>
 			<<elseif $rep > 14000>>
-				@@color:rgb(0,170,0);renowned@@
+				<span style="color:rgb(0,170,0)">renowned</span>
 			<<elseif $rep > 13000>>
-				@@color:rgb(0,175,0);famed@@
+				<span style="color:rgb(0,175,0)">famed</span>
 			<<elseif $rep > 12000>>
-				@@color:rgb(0,180,0);celebrated@@
+				<span style="color:rgb(0,180,0)">celebrated</span>
 			<<elseif $rep > 11000>>
-				@@color:rgb(0,185,0);honored@@
+				<span style="color:rgb(0,185,0)">honored</span>
 			<<elseif $rep > 10000>>
-				@@color:rgb(0,190,0);acclaimed@@
+				<span style="color:rgb(0,190,0)">acclaimed</span>
 			<<elseif $rep > 9000>>
-				@@color:rgb(0,195,0);eminent@@
+				<span style="color:rgb(0,195,0)">eminent</span>
 			<<elseif $rep > 8250>>
-				@@color:rgb(0,200,0);prominent@@
+				<span style="color:rgb(0,200,0)">prominent</span>
 			<<elseif $rep > 7500>>
-				@@color:rgb(0,205,0);distinguished@@
+				<span style="color:rgb(0,205,0)">distinguished</span>
 			<<elseif $rep > 6750>>
-				@@color:rgb(0,210,0);admired@@
+				<span style="color:rgb(0,210,0)">admired</span>
 			<<elseif $rep > 6000>>
-				@@color:rgb(0,215,0);esteemed@@
+				<span style="color:rgb(0,215,0)">esteemed</span>
 			<<elseif $rep > 5250>>
-				@@color:rgb(0,220,0);respected@@
+				<span style="color:rgb(0,220,0)">respected</span>
 			<<elseif $rep > 4500>>
-				@@color:rgb(0,225,0);known@@
+				<span style="color:rgb(0,225,0)">known</span>
 			<<elseif $rep > 3750>>
-				@@color:rgb(0,230,0);recognized@@
+				<span style="color:rgb(0,230,0)">recognized</span>
 			<<elseif $rep > 3000>>
-				@@color:rgb(0,235,0);rumored@@
+				<span style="color:rgb(0,235,0)">rumored</span>
 			<<elseif $rep > 2250>>
-				@@color:rgb(0,240,0);envied@@
+				<span style="color:rgb(0,240,0)">envied</span>
 			<<elseif $rep > 1500>>
-				@@color:rgb(0,245,0);resented@@
+				<span style="color:rgb(0,245,0)">resented</span>
 			<<elseif $rep > 750>>
-				@@color:rgb(0,250,0);disliked@@
+				<span style="color:rgb(0,250,0)">disliked</span>
 			<<else>>
-				@@color:rgb(0,255,0);unknown@@
+				<span style="color:rgb(0,255,0)">unknown</span>
 			<</if>>
 			(<<= num($rep)>>)
 			<<if _Pass == "Main" && $cheatMode && $cheatModeM>>
diff --git a/src/markets/marketUI.js b/src/markets/marketUI.js
index 008c5f0b3cd4bf8d7f7ca42d23e2b3f3c8629262..a349c8e922fdab111045d31aceff9d8c3a5f2219 100644
--- a/src/markets/marketUI.js
+++ b/src/markets/marketUI.js
@@ -40,7 +40,7 @@ App.Markets.purchaseFramework = function(slaveMarket, {numArcology, sTitleSingul
 		if (sTitleSingular === "prisoner") {
 			title = {
 				decline: `Inspect a different prisoner`,
-				buyAndKeepShopping: `Buy ${him} and check out other other available ${sTitlePlural}`,
+				buyAndKeepShopping: `Buy ${him} and check out other available ${sTitlePlural}`,
 				buyJustHer: `Enslave ${him}`,
 				buyHerAndFinish: `Enslave ${him} and finish your inspection`,
 				finish: `Finish your enslavement of prisoners`
diff --git a/src/markets/specificMarkets/slaveMarkets.js b/src/markets/specificMarkets/slaveMarkets.js
index f20441f9ed3694c69bba8dc6b07bc06c319190fa..fd7f1746554366569540033c269db2e9f6d6cf85 100644
--- a/src/markets/specificMarkets/slaveMarkets.js
+++ b/src/markets/specificMarkets/slaveMarkets.js
@@ -195,7 +195,7 @@ App.Markets.raiders = function() {
 App.Markets.neighbor = function(numArcology) {
 	const el = new DocumentFragment();
 	let r = [];
-	r.push(`You're in the area of the slave market that specializes in slaves from within the Free City, viewing slaves from <span class="bold>${V.arcologies[numArcology].name}</span>. Some were trained there, specifically for sale, while others are simply being sold.`);
+	r.push(`You're in the area of the slave market that specializes in slaves from within the Free City, viewing slaves from <span class="bold>${V.arcologies[numArcology].name}.</span> Some were trained there, specifically for sale, while others are simply being sold.`);
 	let _opinion = App.Neighbor.opinion(0, numArcology);
 	let costMod = 1;
 	if (_opinion !== 0) {